We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8365f66 commit fa963d6Copy full SHA for fa963d6
tests/codegen/float/f16-f128-inline.rs
@@ -5,24 +5,28 @@
5
#![feature(f16)]
6
7
#[no_mangle]
8
+#[inline(always)] // todo
9
pub fn f16_arg(a: f16) {
10
// CHECK-NOT: f16_arg
11
todo!()
12
}
13
14
15
16
pub fn f16_ret() -> f16 {
17
// CHECK-NOT: f16_ret
18
19
20
21
22
23
pub fn f128_arg(a: f128) {
24
// CHECK-NOT: f128_arg
25
26
27
28
29
30
pub fn f128_ret() -> f128 {
31
// CHECK-NOT: f128_ret
32
0 commit comments