Debug info is disabled on PPC Darwin.
authorBill Wendling <isanbard@gmail.com>
Mon, 30 Nov 2009 22:23:29 +0000 (22:23 +0000)
committerBill Wendling <isanbard@gmail.com>
Mon, 30 Nov 2009 22:23:29 +0000 (22:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90160 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendC++/2006-11-30-Pubnames.cpp
test/FrontendC++/m64-ptr.cpp
test/FrontendC/2009-02-17-BitField-dbg.c

index 48ad827f76c83eb38cf2c0989a11b77662a94bd0..64214a8d0094fd63231fd3af8a627f9965f03573 100644 (file)
@@ -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;
 };
index 8d1bb7a69845dd971632bc9a9e8760f771fd3d53..7685cfeaa026c48f76d82ebe7e09526bae36d492 100644 (file)
@@ -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.
index 36ee2e6f0ef70ad40ea928992cb5ebc179c5bf90..7ab14fd27a68826046c8cbd13ed0b3cfa5b87863 100644 (file)
@@ -5,6 +5,10 @@
 // RUN: echo {ptype mystruct} > %t2
 // RUN: gdb -q -batch -n -x %t2 2009-02-17-BitField-dbg.o | \
 // RUN:   tee 2009-02-17-BitField-dbg.out | grep "int a : 4"
+//
+// XFAIL: powerpc-apple-darwin
+// FIXME: This doesn't work for PPC Darwin because we turned off debugging on
+// that platform.
 
 struct {
   int  a:4;