From: David Blaikie Date: Tue, 21 Sep 2021 18:38:33 +0000 (-0700) Subject: nullptr printing - update for a change to clang type printing that now uses "std... X-Git-Tag: upstream/15.0.7~30939 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=40e971a21052a8638933037615e3c681e193f3fc;p=platform%2Fupstream%2Fllvm.git nullptr printing - update for a change to clang type printing that now uses "std::nullptr_t" --- diff --git a/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp b/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp index 030ae95..75f9a02 100644 --- a/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp +++ b/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp @@ -210,9 +210,9 @@ auto null = &nullary; // FIXME: These currently don't work because clang-cl emits incorrect debug info // for std::nullptr_t. We should fix these in clang-cl. auto rae = &unaryret; -// CHECK: (nullptr_t (*)()) rae = {{.*}} +// CHECK: (std::nullptr_t (*)()) rae = {{.*}} auto aae = &unary; -// CHECK: (void (*)(nullptr_t)) aae = {{.*}} +// CHECK: (void (*)(std::nullptr_t)) aae = {{.*}} int main(int argc, char **argv) { return 0;