[lldb] Unbreak the build after a recent PowerPC change
authorDavid Zarzycki <dave@znu.io>
Thu, 29 Oct 2020 09:53:47 +0000 (05:53 -0400)
committerDavid Zarzycki <dave@znu.io>
Thu, 29 Oct 2020 09:56:38 +0000 (05:56 -0400)
40dd4d5233d9f81705a24d91b48d2620e487b89d introduced two new types.

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

index 3f6da8e..6a5c5cb 100644 (file)
@@ -4819,6 +4819,12 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type,
     case clang::BuiltinType::OCLIntelSubgroupAVCImeDualRefStreamin:
       break;
 
+    // PowerPC -- Matrix Multiply Assist
+    case clang::BuiltinType::VectorPair:
+    case clang::BuiltinType::VectorQuad:
+      break;
+
+    // ARM -- Scalable Vector Extension
     case clang::BuiltinType::SveBool:
     case clang::BuiltinType::SveInt8:
     case clang::BuiltinType::SveInt8x2: