From 40e971a21052a8638933037615e3c681e193f3fc Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Tue, 21 Sep 2021 11:38:33 -0700 Subject: [PATCH] nullptr printing - update for a change to clang type printing that now uses "std::nullptr_t" --- .../Shell/SymbolFile/NativePDB/function-types-builtins.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp b/lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp index 030ae95bf1ea..75f9a029d448 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;