[lldb] Add support for displaying __float128 variables (#98369)

This commit is contained in:
beetrees
2025-08-01 02:04:48 +01:00
committed by GitHub
parent 03bb10bea6
commit e15b3ef704
13 changed files with 70 additions and 14 deletions

View File

@@ -594,6 +594,7 @@ def is_numeric_type(basic_type):
if basic_type == eBasicTypeFloat: return (True,True)
if basic_type == eBasicTypeDouble: return (True,True)
if basic_type == eBasicTypeLongDouble: return (True,True)
if basic_type == eBasicTypeFloat128: return (True,True)
if basic_type == eBasicTypeFloatComplex: return (True,True)
if basic_type == eBasicTypeDoubleComplex: return (True,True)
if basic_type == eBasicTypeLongDoubleComplex: return (True,True)