[Lldb-commits] [PATCH] D145533: [lldb] Fix after __SVCount_t added for AArch64

Alina Sbirlea via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 7 18:30:53 PST 2023


This revision was automatically updated to reflect the committed changes.
Closed by commit rG3f29b23b1a3c: [lldb] Fix after __SVCount_t added for AArch64 (authored by asbirlea).

Changed prior to commit:
  https://reviews.llvm.org/D145533?vs=503194&id=503203#toc

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D145533/new/

https://reviews.llvm.org/D145533

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


Index: lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
===================================================================
--- lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
+++ lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
@@ -4985,6 +4985,7 @@
 
     // ARM -- Scalable Vector Extension
     case clang::BuiltinType::SveBool:
+    case clang::BuiltinType::SveCount:
     case clang::BuiltinType::SveInt8:
     case clang::BuiltinType::SveInt8x2:
     case clang::BuiltinType::SveInt8x3:
@@ -5033,7 +5034,6 @@
     case clang::BuiltinType::SveFloat64x2:
     case clang::BuiltinType::SveFloat64x3:
     case clang::BuiltinType::SveFloat64x4:
-    case clang::BuiltinType::SveCount:
       break;
 
     // RISC-V V builtin types.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D145533.503203.patch
Type: text/x-patch
Size: 761 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20230308/2e8904bc/attachment.bin>


More information about the lldb-commits mailing list