diff options
| author | beetrees <b@beetr.ee> | 2024-08-16 23:42:10 +0100 |
|---|---|---|
| committer | beetrees <b@beetr.ee> | 2024-08-17 02:14:23 +0100 |
| commit | 9bc7cea412b31be0faf1fc1e65f39b9b952a43e6 (patch) | |
| tree | dfdd6786bb880b73879f49be0d8c065470f3ed70 /compiler/rustc_codegen_llvm/src/context.rs | |
| parent | 569d7e3d1528a24e50f8e05fd8380e999989b944 (diff) | |
| download | rust-9bc7cea412b31be0faf1fc1e65f39b9b952a43e6.tar.gz rust-9bc7cea412b31be0faf1fc1e65f39b9b952a43e6.zip | |
Fix `is_val_statically_known` for floats
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/context.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/context.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/context.rs b/compiler/rustc_codegen_llvm/src/context.rs index dd3f39ecead..1fd9f9e8116 100644 --- a/compiler/rustc_codegen_llvm/src/context.rs +++ b/compiler/rustc_codegen_llvm/src/context.rs @@ -1000,8 +1000,10 @@ impl<'ll> CodegenCx<'ll, '_> { ifn!("llvm.is.constant.i64", fn(t_i64) -> i1); ifn!("llvm.is.constant.i128", fn(t_i128) -> i1); ifn!("llvm.is.constant.isize", fn(t_isize) -> i1); + ifn!("llvm.is.constant.f16", fn(t_f16) -> i1); ifn!("llvm.is.constant.f32", fn(t_f32) -> i1); ifn!("llvm.is.constant.f64", fn(t_f64) -> i1); + ifn!("llvm.is.constant.f128", fn(t_f128) -> i1); ifn!("llvm.is.constant.ptr", fn(ptr) -> i1); ifn!("llvm.expect.i1", fn(i1, i1) -> i1); |
