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
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
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits