[lldb] Silence compiler warning after fae0dfa642

lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp:4765:13: warning: enumeration value 'Ibm128' not handled in switch [-Wswitch]
    switch (llvm::cast<clang::BuiltinType>(qual_type)->getKind()) {
            ^
This commit is contained in:
Benjamin Kramer 2021-09-06 12:30:47 +02:00
parent 37cbd817d3
commit 7fa6b9f610
1 changed files with 1 additions and 0 deletions

View File

@ -4824,6 +4824,7 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type,
case clang::BuiltinType::Double:
case clang::BuiltinType::LongDouble:
case clang::BuiltinType::BFloat16:
case clang::BuiltinType::Ibm128:
return lldb::eEncodingIEEE754;
case clang::BuiltinType::ObjCClass: