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


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to