[Lldb-commits] [lldb] [lldb][DWARFASTParserClang] Added a check for the specialization existence (PR #154123)
    Michael Buch via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Tue Sep  9 06:10:53 PDT 2025
    
    
  
================
@@ -959,6 +959,9 @@ CompilerType TypeSystemClang::GetBuiltinTypeForDWARFEncodingAndBitSize(
     if (type_name == "long double" &&
         QualTypeMatchesBitSize(bit_size, ast, ast.LongDoubleTy))
       return GetType(ast.LongDoubleTy);
+    if (type_name == "__bf16" &&
----------------
Michael137 wrote:
Lets also add a case for `Float16Ty` (i.e., `_Float16`)
https://github.com/llvm/llvm-project/pull/154123
    
    
More information about the lldb-commits
mailing list