Skip to content

Commit fa963d6

Browse files
committed
Try inline always just to see the results
1 parent 8365f66 commit fa963d6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/codegen/float/f16-f128-inline.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,28 @@
55
#![feature(f16)]
66

77
#[no_mangle]
8+
#[inline(always)] // todo
89
pub fn f16_arg(a: f16) {
910
// CHECK-NOT: f16_arg
1011
todo!()
1112
}
1213

1314
#[no_mangle]
15+
#[inline(always)] // todo
1416
pub fn f16_ret() -> f16 {
1517
// CHECK-NOT: f16_ret
1618
todo!()
1719
}
1820

1921
#[no_mangle]
22+
#[inline(always)] // todo
2023
pub fn f128_arg(a: f128) {
2124
// CHECK-NOT: f128_arg
2225
todo!()
2326
}
2427

2528
#[no_mangle]
29+
#[inline(always)] // todo
2630
pub fn f128_ret() -> f128 {
2731
// CHECK-NOT: f128_ret
2832
todo!()

0 commit comments

Comments
 (0)