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 fa963d6 commit f45bf12Copy full SHA for f45bf12
tests/codegen/float/f16-f128-inline.rs
@@ -4,29 +4,21 @@
4
#![feature(f128)]
5
#![feature(f16)]
6
7
-#[no_mangle]
8
-#[inline(always)] // todo
9
-pub fn f16_arg(a: f16) {
+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) {
+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