diff options
| author | Laurențiu Nicola <lnicola@users.noreply.github.com> | 2024-11-28 06:54:16 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-28 06:54:16 +0000 |
| commit | 8cf30c235619f60c0a0f0a0779bd17e7e70bf0fb (patch) | |
| tree | 564950531f457ebbe2a114e486cb2c8c72bf9ed0 /tests/codegen/float | |
| parent | 4e3354ef925d9711c125470097643236c3a983d0 (diff) | |
| parent | 1a435ed7edc19812c29006701b0106a0d0802542 (diff) | |
| download | rust-8cf30c235619f60c0a0f0a0779bd17e7e70bf0fb.tar.gz rust-8cf30c235619f60c0a0f0a0779bd17e7e70bf0fb.zip | |
Merge pull request #18566 from lnicola/sync-from-rust
minor: Sync from downstream
Diffstat (limited to 'tests/codegen/float')
| -rw-r--r-- | tests/codegen/float/f16-f128-inline.rs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/codegen/float/f16-f128-inline.rs b/tests/codegen/float/f16-f128-inline.rs new file mode 100644 index 00000000000..aa2c38c209e --- /dev/null +++ b/tests/codegen/float/f16-f128-inline.rs @@ -0,0 +1,29 @@ +//@ revisions: default nopt +//@[nopt] compile-flags: -Copt-level=0 -Zcross-crate-inline-threshold=never -Zmir-opt-level=0 -Cno-prepopulate-passes + +// Ensure that functions using `f16` and `f128` are always inlined to avoid crashes +// when the backend does not support these types. + +#![crate_type = "lib"] +#![feature(f128)] +#![feature(f16)] + +pub fn f16_arg(_a: f16) { + // CHECK-NOT: f16_arg + todo!() +} + +pub fn f16_ret() -> f16 { + // CHECK-NOT: f16_ret + todo!() +} + +pub fn f128_arg(_a: f128) { + // CHECK-NOT: f128_arg + todo!() +} + +pub fn f128_ret() -> f128 { + // CHECK-NOT: f128_ret + todo!() +} |
