Author: Matheus Izvekov Date: 2021-11-12T01:47:29+01:00 New Revision: 55085952175ed3b029097a0594acc4e34a5df218
URL: https://github.com/llvm/llvm-project/commit/55085952175ed3b029097a0594acc4e34a5df218 DIFF: https://github.com/llvm/llvm-project/commit/55085952175ed3b029097a0594acc4e34a5df218.diff LOG: [lldb] fix test expectation broken by clang fix at D110216 Signed-off-by: Matheus Izvekov <mizve...@gmail.com> Differential Revision: https://reviews.llvm.org/D113722 Added: Modified: lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp Removed: ################################################################################ diff --git a/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp b/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp index 75f9a029d448c..69d8d17179fe9 100644 --- a/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp +++ b/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp @@ -118,7 +118,7 @@ auto aab = &unary<int(*)[5]>; 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 lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits