Commit e69d504e by Dale Johannesen Committed by Dale Johannesen

20020312-2.c: Fix for non-PowerPC Darwin.

2005-03-23  Dale Johannesen  <dalej@apple.com>

        * gcc.dg/20020312-2.c:  Fix for non-PowerPC Darwin.

From-SVN: r96939
parent 47c0c7d7
2005-03-23 Dale Johannesen <dalej@apple.com>
* gcc.dg/20020312-2.c: Fix for non-PowerPC Darwin.
2005-03-23 Mark Mitchell <mark@codesourcery.com> 2005-03-23 Mark Mitchell <mark@codesourcery.com>
* g++.old-deja/g++.warn/compare1.C: Run with -Wno-deprecated. * g++.old-deja/g++.warn/compare1.C: Run with -Wno-deprecated.
......
...@@ -120,7 +120,7 @@ main() ...@@ -120,7 +120,7 @@ main()
save and restore global registers. Not possible when the PIC save and restore global registers. Not possible when the PIC
register is in a register window, of course. On Darwin, you can't register is in a register window, of course. On Darwin, you can't
call library routines from non-PIC code. */ call library routines from non-PIC code. */
#if !defined (__sparc__) && !(defined(__MACH__) && defined(__POWERPC__)) #if !defined (__sparc__) && !defined(__MACH__)
if (reg) if (reg)
abort (); abort ();
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment