about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJens Reidel <adrian@travitia.xyz>2025-07-21 21:57:08 +0200
committerJens Reidel <adrian@travitia.xyz>2025-07-21 21:57:08 +0200
commite1b6cfe62e0571d2c5bfd89fd7dae9e4cf7bcf86 (patch)
tree6cf0d182bc6eb7ed8d8b10725a5b9c4d1b2eb968
parent1d0eddbedd3b364418d2ae12b1240d487488ac5b (diff)
downloadrust-e1b6cfe62e0571d2c5bfd89fd7dae9e4cf7bcf86.tar.gz
rust-e1b6cfe62e0571d2c5bfd89fd7dae9e4cf7bcf86.zip
Rephrase comment to include some tracking issues
Signed-off-by: Jens Reidel <adrian@travitia.xyz>
-rw-r--r--tests/debuginfo/basic-types-globals-metadata.rs6
-rw-r--r--tests/debuginfo/basic-types-globals.rs6
2 files changed, 8 insertions, 4 deletions
diff --git a/tests/debuginfo/basic-types-globals-metadata.rs b/tests/debuginfo/basic-types-globals-metadata.rs
index d14d5472f53..aec8ff183ad 100644
--- a/tests/debuginfo/basic-types-globals-metadata.rs
+++ b/tests/debuginfo/basic-types-globals-metadata.rs
@@ -60,8 +60,10 @@ fn main() {
     _zzz(); // #break
 
     let a = unsafe { (B, I, C, I8, I16, I32, I64, U, U8, U16, U32, U64, F32, F64) };
-    // N.B. Including f16 and f32 in the same tuple emits `__gnu_h2f_ieee`, which does
-    // not exist on some targets like PowerPC
+    // FIXME: Including f16 and f32 in the same tuple emits `__gnu_h2f_ieee`, which
+    // does not exist on some targets like PowerPC.
+    // See https://github.com/llvm/llvm-project/issues/97981 and
+    // https://github.com/rust-lang/compiler-builtins/issues/655
     let b = unsafe { F16 };
 }
 
diff --git a/tests/debuginfo/basic-types-globals.rs b/tests/debuginfo/basic-types-globals.rs
index 5933c6d2440..15a0deb64c1 100644
--- a/tests/debuginfo/basic-types-globals.rs
+++ b/tests/debuginfo/basic-types-globals.rs
@@ -64,8 +64,10 @@ fn main() {
     _zzz(); // #break
 
     let a = unsafe { (B, I, C, I8, I16, I32, I64, U, U8, U16, U32, U64, F32, F64) };
-    // N.B. Including f16 and f32 in the same tuple emits `__gnu_h2f_ieee`, which does
-    // not exist on some targets like PowerPC
+    // FIXME: Including f16 and f32 in the same tuple emits `__gnu_h2f_ieee`, which
+    // does not exist on some targets like PowerPC.
+    // See https://github.com/llvm/llvm-project/issues/97981 and
+    // https://github.com/rust-lang/compiler-builtins/issues/655
     let b = unsafe { F16 };
 }