Skip to content

Commit e1b6cfe

Browse files
committed
Rephrase comment to include some tracking issues
Signed-off-by: Jens Reidel <[email protected]>
1 parent 1d0eddb commit e1b6cfe

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

tests/debuginfo/basic-types-globals-metadata.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,10 @@ fn main() {
6060
_zzz(); // #break
6161

6262
let a = unsafe { (B, I, C, I8, I16, I32, I64, U, U8, U16, U32, U64, F32, F64) };
63-
// N.B. Including f16 and f32 in the same tuple emits `__gnu_h2f_ieee`, which does
64-
// not exist on some targets like PowerPC
63+
// FIXME: Including f16 and f32 in the same tuple emits `__gnu_h2f_ieee`, which
64+
// does not exist on some targets like PowerPC.
65+
// See https://github.com/llvm/llvm-project/issues/97981 and
66+
// https://github.com/rust-lang/compiler-builtins/issues/655
6567
let b = unsafe { F16 };
6668
}
6769

tests/debuginfo/basic-types-globals.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,10 @@ fn main() {
6464
_zzz(); // #break
6565

6666
let a = unsafe { (B, I, C, I8, I16, I32, I64, U, U8, U16, U32, U64, F32, F64) };
67-
// N.B. Including f16 and f32 in the same tuple emits `__gnu_h2f_ieee`, which does
68-
// not exist on some targets like PowerPC
67+
// FIXME: Including f16 and f32 in the same tuple emits `__gnu_h2f_ieee`, which
68+
// does not exist on some targets like PowerPC.
69+
// See https://github.com/llvm/llvm-project/issues/97981 and
70+
// https://github.com/rust-lang/compiler-builtins/issues/655
6971
let b = unsafe { F16 };
7072
}
7173

0 commit comments

Comments
 (0)