diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2016-08-10 01:37:27 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2016-08-10 01:37:27 +0000 |
commit | 0711416b471b8986d053407f69ac0ec60446b07c (patch) | |
tree | 9aa30e67e2a71b0023ce35e379fe8c4aebd3ba85 /lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp | |
parent | c989c3e784750690dae4896ee217f6dfc0660090 (diff) | |
download | bcm5719-llvm-0711416b471b8986d053407f69ac0ec60446b07c.tar.gz bcm5719-llvm-0711416b471b8986d053407f69ac0ec60446b07c.zip |
Undid LLVM macro usage in test suite test subject files.
llvm-svn: 278197
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp b/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp index 8065057304d..bfe098a089f 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp @@ -17,7 +17,7 @@ public: virtual ~VBase() {} void Print() { - printf("%p: %s\n%p: m_value = 0x%8.8x\n", this, LLVM_PRETTY_FUNCTION, &m_value, m_value); + printf("%p: %s\n%p: m_value = 0x%8.8x\n", this, __PRETTY_FUNCTION__, &m_value, m_value); } int m_value; }; @@ -28,7 +28,7 @@ public: Derived1() {}; void Print () { - printf("%p: %s\n", this, LLVM_PRETTY_FUNCTION); + printf("%p: %s\n", this, __PRETTY_FUNCTION__); VBase::Print(); } @@ -41,7 +41,7 @@ public: void Print () { - printf("%p: %s\n", this, LLVM_PRETTY_FUNCTION); + printf("%p: %s\n", this, __PRETTY_FUNCTION__); VBase::Print(); } }; @@ -56,7 +56,7 @@ public: { printf("%p: %s \n%p: m_joiner1 = 0x%8.8x\n%p: m_joiner2 = 0x%8.8x\n", this, - LLVM_PRETTY_FUNCTION, + __PRETTY_FUNCTION__, &m_joiner1, m_joiner1, &m_joiner2, |