1; REQUIRES: riscv
2
3; RUN: llvm-as %s -o %t.o
4; RUN: ld.lld %t.o -o %t
5target datalayout = "e-m:e-p:64:64-i64:64-i128:128-n64-S128"
6target triple = "riscv64-unknown-elf"
7
8define void @f() {
9  ret void
10}
11