[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:29:09 PST 2021


mizvekov created this revision.
mizvekov requested review of this revision.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.

Signed-off-by: Matheus Izvekov <mizvekov at gmail.com>


Repository:
  rG LLVM Github Monorepo

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.386681.patch
Type: text/x-patch
Size: 595 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20211112/9e9abc18/attachment.bin>


More information about the lldb-commits mailing list