[Lldb-commits] [lldb] 40e971a - nullptr printing - update for a change to clang type printing that now uses "std::nullptr_t"

David Blaikie via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 21 11:50:35 PDT 2021


Author: David Blaikie
Date: 2021-09-21T11:50:24-07:00
New Revision: 40e971a21052a8638933037615e3c681e193f3fc

URL: https://github.com/llvm/llvm-project/commit/40e971a21052a8638933037615e3c681e193f3fc
DIFF: https://github.com/llvm/llvm-project/commit/40e971a21052a8638933037615e3c681e193f3fc.diff

LOG: nullptr printing - update for a change to clang type printing that now uses "std::nullptr_t"

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 030ae95bf1ea1..75f9a029d448c 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<decltype(nullptr), 29>;
-// CHECK: (nullptr_t (*)()) rae = {{.*}}
+// CHECK: (std::nullptr_t (*)()) rae = {{.*}}
 auto aae = &unary<decltype(nullptr)>;
-// CHECK: (void (*)(nullptr_t)) aae = {{.*}}
+// CHECK: (void (*)(std::nullptr_t)) aae = {{.*}}
 
 int main(int argc, char **argv) {
   return 0;


        


More information about the lldb-commits mailing list