[Lldb-commits] [lldb] [lldb][TypeSystemClang] Added unique builtins types for __bf16 and _Float16 (PR #157674)

Timur Golubovich via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 23 07:48:47 PDT 2025


================
@@ -82,7 +82,7 @@ def test(self):
         value = self.expect_expr("temp7", result_type="Foo<__fp16, __fp16>")
----------------
tgs-sc wrote:

I can make such changes
```
// '_Float16'
FLOATING_TYPE(Float16, HalfTy)
```
->
```
// '_Float16'
FLOATING_TYPE(Float16, Float16Ty)
```
But I am not sure that it won't break anything. Probably we should ask someone on the clang side why this is made in such way.

https://github.com/llvm/llvm-project/pull/157674


More information about the lldb-commits mailing list