mirror of
https://github.com/intel/llvm.git
synced 2026-01-23 16:06:39 +08:00
[lldb] Add support for displaying __float128 variables (#98369)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user