[Lldb-commits] [lldb] df06f4f - [lldb] Handle a new clang built-in type

Kadir Cetinkaya via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 2 06:41:43 PDT 2020


Author: Kadir Cetinkaya
Date: 2020-06-02T15:41:33+02:00
New Revision: df06f4ff227bdcbbad01b418199876761f2a1ff0

URL: https://github.com/llvm/llvm-project/commit/df06f4ff227bdcbbad01b418199876761f2a1ff0
DIFF: https://github.com/llvm/llvm-project/commit/df06f4ff227bdcbbad01b418199876761f2a1ff0.diff

LOG: [lldb] Handle a new clang built-in type

Added: 
    

Modified: 
    lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
index 9ff8bdb7537f..892df4fd5750 100644
--- a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
+++ b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
@@ -4830,6 +4830,9 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type,
     case clang::BuiltinType::SveFloat32:
     case clang::BuiltinType::SveFloat64:
       break;
+
+    case clang::BuiltinType::IncompleteMatrixIdx:
+      break;
     }
     break;
   // All pointer types are represented as unsigned integer encodings. We may


        


More information about the lldb-commits mailing list