summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/debuginfo
diff options
context:
space:
mode:
authorTrevor Gross <tmgross@umich.edu>2024-03-01 03:53:26 -0500
committerTrevor Gross <tmgross@umich.edu>2024-03-01 13:59:06 -0500
commit02778b3e0ea2ab8818e77811b05f9dc2e01c9028 (patch)
tree12e3934f3b2c0bfa6d41fb0ddc9e14f140a00371 /compiler/rustc_codegen_llvm/src/debuginfo
parent6cbf0926d54c80ea6d15df333be9281f65bbeb36 (diff)
downloadrust-02778b3e0ea2ab8818e77811b05f9dc2e01c9028.tar.gz
rust-02778b3e0ea2ab8818e77811b05f9dc2e01c9028.zip
Add `f16` and `f128` LLVM intrinsics
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/debuginfo')
-rw-r--r--compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs b/compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs
index 045b6d2b651..1a5f9b42947 100644
--- a/compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs
+++ b/compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs
@@ -695,7 +695,7 @@ impl MsvcBasicName for ty::UintTy {
 
 impl MsvcBasicName for ty::FloatTy {
     fn msvc_basic_name(self) -> &'static str {
-        // FIXME: f16 and f128 have no MSVE representation. We could improve the debuginfo.
+        // FIXME: f16 and f128 have no MSVC representation. We could improve the debuginfo.
         // See: <https://github.com/rust-lang/rust/pull/114607/files#r1454683264>
         match self {
             ty::FloatTy::F16 => "half",