diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp index 72ceb64a6fb..01f67913924 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp +++ b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp @@ -16,15 +16,15 @@ namespace a { ~c(); void func1() { - puts (LLVM_PRETTY_FUNCTION); + puts (__PRETTY_FUNCTION__); } void func2() { - puts (LLVM_PRETTY_FUNCTION); + puts (__PRETTY_FUNCTION__); } void func3() { - puts (LLVM_PRETTY_FUNCTION); + puts (__PRETTY_FUNCTION__); } }; @@ -39,11 +39,11 @@ namespace b { ~c(); void func1() { - puts (LLVM_PRETTY_FUNCTION); + puts (__PRETTY_FUNCTION__); } void func3() { - puts (LLVM_PRETTY_FUNCTION); + puts (__PRETTY_FUNCTION__); } }; @@ -58,11 +58,11 @@ namespace c { ~d() {} void func2() { - puts (LLVM_PRETTY_FUNCTION); + puts (__PRETTY_FUNCTION__); } void func3() { - puts (LLVM_PRETTY_FUNCTION); + puts (__PRETTY_FUNCTION__); } }; } |