diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 09cb21be40f..84a73de14e3 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-03-23 Dale Johannesen + + * gcc.dg/20020312-2.c: Fix for non-PowerPC Darwin. + 2005-03-23 Mark Mitchell * g++.old-deja/g++.warn/compare1.C: Run with -Wno-deprecated. diff --git a/gcc/testsuite/gcc.dg/20020312-2.c b/gcc/testsuite/gcc.dg/20020312-2.c index 322c1d04898..763e167a12b 100644 --- a/gcc/testsuite/gcc.dg/20020312-2.c +++ b/gcc/testsuite/gcc.dg/20020312-2.c @@ -120,7 +120,7 @@ main() save and restore global registers. Not possible when the PIC register is in a register window, of course. On Darwin, you can't call library routines from non-PIC code. */ -#if !defined (__sparc__) && !(defined(__MACH__) && defined(__POWERPC__)) +#if !defined (__sparc__) && !defined(__MACH__) if (reg) abort (); #endif