11 lines
354 B
C
11 lines
354 B
C
|
// RUN: %clang --target=riscv32-unknown-elf -S -emit-llvm %s -o - | FileCheck %s -check-prefix=RV32
|
||
|
// RUN: %clang --target=riscv64-unknown-elf -S -emit-llvm %s -o - | FileCheck %s -check-prefix=RV64
|
||
|
|
||
|
// RV32: "target-features"="+32bit,+a,+c,+m,+relax,
|
||
|
// RV64: "target-features"="+64bit,+a,+c,+m,+relax,
|
||
|
|
||
|
// Dummy function
|
||
|
int foo(void){
|
||
|
return 3;
|
||
|
}
|