[Lldb-commits] [PATCH] D112340: [lldb/Formatters] Remove space from vector type string summaries (NFCI)
Med Ismail Bennani via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 22 12:18:41 PDT 2021
mib updated this revision to Diff 381629.
mib added a comment.
Remove FIXME
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112340/new/
https://reviews.llvm.org/D112340
Files:
lldb/source/DataFormatters/FormatManager.cpp
Index: lldb/source/DataFormatters/FormatManager.cpp
===================================================================
--- lldb/source/DataFormatters/FormatManager.cpp
+++ lldb/source/DataFormatters/FormatManager.cpp
@@ -773,14 +773,11 @@
AddStringSummary(vectors_category_sp, "${var.uint128}",
ConstString("builtin_type_vec128"), vector_flags);
-
- // FIXME: These probably need the space removed, or made optional - but are
- // they even tested?
- AddStringSummary(vectors_category_sp, "", ConstString("float [4]"),
+ AddStringSummary(vectors_category_sp, "", ConstString("float[4]"),
vector_flags);
- AddStringSummary(vectors_category_sp, "", ConstString("int32_t [4]"),
+ AddStringSummary(vectors_category_sp, "", ConstString("int32_t[4]"),
vector_flags);
- AddStringSummary(vectors_category_sp, "", ConstString("int16_t [8]"),
+ AddStringSummary(vectors_category_sp, "", ConstString("int16_t[8]"),
vector_flags);
AddStringSummary(vectors_category_sp, "", ConstString("vDouble"),
vector_flags);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D112340.381629.patch
Type: text/x-patch
Size: 1117 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20211022/6d46a341/attachment.bin>
More information about the lldb-commits
mailing list