From: Steve Ellcey Date: Tue, 9 Nov 2004 00:49:00 +0000 (+0000) Subject: * testsuite/gcc.dg/uninit-H.c: Add ifdefs for __hppa__ and __ia64__. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=66e52c3536c00357c90082358c8377d41feb7d01;p=gcc.git * testsuite/gcc.dg/uninit-H.c: Add ifdefs for __hppa__ and __ia64__. From-SVN: r90324 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 16f5c4a190b..2f176e9d860 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-11-08 Steve Ellcey + + * testsuite/gcc.dg/uninit-H.c: Add ifdefs for __hppa__ and __ia64__. + 2004-11-08 Steve Ellcey * testsuite/gcc.dg/20030225-2.c: Add prototype for abort and diff --git a/gcc/testsuite/gcc.dg/uninit-H.c b/gcc/testsuite/gcc.dg/uninit-H.c index 5fe2d39ae52..e33f1e8940a 100644 --- a/gcc/testsuite/gcc.dg/uninit-H.c +++ b/gcc/testsuite/gcc.dg/uninit-H.c @@ -14,6 +14,10 @@ # define ASM __asm__("$sp") #elif defined __sparc__ # define ASM __asm__("sp") +#elif defined __ia64__ +# define ASM __asm__("r12") +#elif defined __hppa__ +# define ASM __asm__("%r30") #else # define ASM #endif