|
1 |
| -// |
2 |
| -//@ compile-flags: -C no-prepopulate-passes |
3 |
| -//@ only-riscv64 |
4 |
| -//@ only-linux |
| 1 | +//@ compile-flags: -O -C no-prepopulate-passes --target riscv64gc-unknown-linux-gnu |
| 2 | +//@ needs-llvm-components: riscv |
| 3 | + |
| 4 | +#![feature(no_core, lang_items)] |
5 | 5 | #![crate_type = "lib"]
|
| 6 | +#![no_std] |
| 7 | +#![no_core] |
| 8 | + |
| 9 | +#[lang="sized"] trait Sized { } |
| 10 | +#[lang="freeze"] trait Freeze { } |
| 11 | +#[lang="copy"] trait Copy { } |
6 | 12 |
|
7 |
| -// CHECK: define void @f_fpr_tracking(double %0, double %1, double %2, double %3, double %4, double %5, double %6, double %7, i8 zeroext %i) |
| 13 | +// CHECK: define void @f_fpr_tracking(double %0, double %1, double %2, double %3, double %4, double %5, double %6, double %7, i8 noundef zeroext %i) |
8 | 14 | #[no_mangle]
|
9 | 15 | pub extern "C" fn f_fpr_tracking(
|
10 | 16 | a: f64,
|
@@ -144,7 +150,7 @@ pub extern "C" fn f_ret_double_int64_s() -> DoubleInt64 {
|
144 | 150 | DoubleInt64 { f: 1., i: 2 }
|
145 | 151 | }
|
146 | 152 |
|
147 |
| -// CHECK: define void @f_double_int8_s_arg_insufficient_gprs(i32 signext %a, i32 signext %b, i32 signext %c, i32 signext %d, i32 signext %e, i32 signext %f, i32 signext %g, i32 signext %h, [2 x i64] %0) |
| 153 | +// CHECK: define void @f_double_int8_s_arg_insufficient_gprs(i32 noundef signext %a, i32 noundef signext %b, i32 noundef signext %c, i32 noundef signext %d, i32 noundef signext %e, i32 noundef signext %f, i32 noundef signext %g, i32 noundef signext %h, [2 x i64] %0) |
148 | 154 | #[no_mangle]
|
149 | 155 | pub extern "C" fn f_double_int8_s_arg_insufficient_gprs(
|
150 | 156 | a: i32,
|
@@ -250,11 +256,11 @@ pub struct IntDoubleInt {
|
250 | 256 | c: i32,
|
251 | 257 | }
|
252 | 258 |
|
253 |
| -// CHECK: define void @f_int_double_int_s_arg(%IntDoubleInt* {{.*}}%a) |
| 259 | +// CHECK: define void @f_int_double_int_s_arg(ptr {{.*}} %a) |
254 | 260 | #[no_mangle]
|
255 | 261 | pub extern "C" fn f_int_double_int_s_arg(a: IntDoubleInt) {}
|
256 | 262 |
|
257 |
| -// CHECK: define void @f_ret_int_double_int_s(%IntDoubleInt* {{.*}}sret |
| 263 | +// CHECK: define void @f_ret_int_double_int_s(ptr {{.*}} sret([24 x i8]) align 8 dereferenceable(24) %_0) |
258 | 264 | #[no_mangle]
|
259 | 265 | pub extern "C" fn f_ret_int_double_int_s() -> IntDoubleInt {
|
260 | 266 | IntDoubleInt { a: 1, b: 2., c: 3 }
|
|
0 commit comments