[Lldb-commits] [PATCH] D145533: [lldb] Fix after __SVCount_t added for AArch64
asbirlea created this revision. asbirlea added reviewers: jgorbe, rupprecht. Herald added a subscriber: kristof.beyls. Herald added a project: All. asbirlea requested review of this revision. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. Fix after https://github.com/llvm/llvm-project/commit/07158c54add927057690aa8c073d35d42eac7006 Repository: rG LLVM Github Monorepo 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: 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: ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
[Lldb-commits] [PATCH] D145533: [lldb] Fix after __SVCount_t added for AArch64
asbirlea added a comment. Yeah, I noticed right after I sent this patch out :-). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D145533/new/ https://reviews.llvm.org/D145533 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
[Lldb-commits] [PATCH] D145533: [lldb] Fix after __SVCount_t added for AArch64
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. 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. ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits