[Lldb-commits] [PATCH] D113722: [lldb] fix test expectation broken by clang fix at D110216
Matheus Izvekov via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Nov 11 16:47:52 PST 2021
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rG55085952175e: [lldb] fix test expectation broken by clang fix at D110216 (authored by mizvekov).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D113722/new/
https://reviews.llvm.org/D113722
Files:
lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp
Index: lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp
===================================================================
--- lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp
+++ lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp
@@ -118,7 +118,7 @@
auto aac = &unary<int(&&)[5]>;
// CHECK: (void (*)(int (&&)[5])) aac = {{.*}}
auto aad = &unary<int(*const)[5]>;
-// CHECK: (void (*)(int (*)[5])) aad = {{.*}}
+// CHECK: (void (*)(int (*const)[5])) aad = {{.*}}
// same test cases with return values, note we can't overload on return type
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D113722.386685.patch
Type: text/x-patch
Size: 595 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20211112/2c500294/attachment.bin>
More information about the lldb-commits
mailing list