Commit eb3a47ba by Andrew Pinski Committed by Andrew Pinski

uninit-H.c: Test for __PPC__ and __ppc__ for the powerpc case.

2004-05-13  Andrew Pinski  <pinskia@physics.uc.edu>

        * gcc.dg/uninit-H.c: Test for __PPC__ and __ppc__
        for the powerpc case.

From-SVN: r81812
parent 6c875a31
2004-05-13 Andrew Pinski <pinskia@physics.uc.edu>
* gcc.dg/uninit-H.c: Test for __PPC__ and __ppc__
for the powerpc case.
2004-05-13 Jeff Law <law@redhat.com>
* gcc.dg/tree-ssa/20040513-1.c: New test.
......
......@@ -6,7 +6,7 @@
# define ASM __asm__("$30")
#elif defined __i386__
# define ASM __asm__("esp")
#elif defined __powerpc__
#elif (defined __powerpc__) || (defined __PPC__) || (defined __ppc__)
# define ASM __asm__("r1")
#else
# define ASM
......
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