From 0711416b471b8986d053407f69ac0ec60446b07c Mon Sep 17 00:00:00 2001 From: Todd Fiala Date: Wed, 10 Aug 2016 01:37:27 +0000 Subject: Undid LLVM macro usage in test suite test subject files. llvm-svn: 278197 --- .../lldbsuite/test/functionalities/breakpoint/cpp/main.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp') 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__); } }; } -- cgit v1.2.3