summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2016-08-10 01:37:27 +0000
committerTodd Fiala <todd.fiala@gmail.com>2016-08-10 01:37:27 +0000
commit0711416b471b8986d053407f69ac0ec60446b07c (patch)
tree9aa30e67e2a71b0023ce35e379fe8c4aebd3ba85 /lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp
parentc989c3e784750690dae4896ee217f6dfc0660090 (diff)
downloadbcm5719-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/functionalities/breakpoint/cpp/main.cpp')
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp14
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__);
}
};
}
OpenPOWER on IntegriCloud