aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC++
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-11-30 22:23:29 +0000
committerBill Wendling <isanbard@gmail.com>2009-11-30 22:23:29 +0000
commitb25846e1807ab8cb4cc3594458283947fb9e9e39 (patch)
treee0600b1e982c34b5a719b0416c4d804f3dd0d883 /test/FrontendC++
parent3858225afc2a7f1027dce34dc72de5686b636c2d (diff)
downloadexternal_llvm-b25846e1807ab8cb4cc3594458283947fb9e9e39.tar.gz
external_llvm-b25846e1807ab8cb4cc3594458283947fb9e9e39.tar.bz2
external_llvm-b25846e1807ab8cb4cc3594458283947fb9e9e39.zip
Debug info is disabled on PPC Darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90160 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++')
-rw-r--r--test/FrontendC++/2006-11-30-Pubnames.cpp6
-rw-r--r--test/FrontendC++/m64-ptr.cpp1
2 files changed, 6 insertions, 1 deletions
diff --git a/test/FrontendC++/2006-11-30-Pubnames.cpp b/test/FrontendC++/2006-11-30-Pubnames.cpp
index 48ad827f76..64214a8d00 100644
--- a/test/FrontendC++/2006-11-30-Pubnames.cpp
+++ b/test/FrontendC++/2006-11-30-Pubnames.cpp
@@ -7,7 +7,11 @@
// RUN: %llvmdsymutil %t.exe
// RUN: echo {break main\nrun\np Pubnames::pubname} > %t.in
// RUN: gdb -q -batch -n -x %t.in %t.exe | tee %t.out | grep {\$1 = 10}
-// XFAIL: alpha,arm
+//
+// XFAIL: alpha,arm,powerpc-apple-darwin
+// FIXME: This doesn't work for PPC Darwin because we turned off debugging on
+// that platform.
+
struct Pubnames {
static int pubname;
};
diff --git a/test/FrontendC++/m64-ptr.cpp b/test/FrontendC++/m64-ptr.cpp
index 8d1bb7a698..7685cfeaa0 100644
--- a/test/FrontendC++/m64-ptr.cpp
+++ b/test/FrontendC++/m64-ptr.cpp
@@ -1,4 +1,5 @@
// RUN: %llvmgxx %s -S -o - | FileCheck %s
+
// Make sure pointers are passed as pointers, not converted to int.
// The first load should be of type i8** in either 32 or 64 bit mode.
// This formerly happened on x86-64, 7375899.