diff options
| author | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-09 00:49:00 +0000 |
|---|---|---|
| committer | sje <sje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-09 00:49:00 +0000 |
| commit | 8a204adab2f445c3f50058cf4a0fb58467b3010a (patch) | |
| tree | 2489b56edb1eade61c7c21acc3ed5b7732e9f8f8 | |
| parent | ae71071949d1c74cba31deacd73072001f990622 (diff) | |
| download | ppe42-gcc-8a204adab2f445c3f50058cf4a0fb58467b3010a.tar.gz ppe42-gcc-8a204adab2f445c3f50058cf4a0fb58467b3010a.zip | |
* testsuite/gcc.dg/uninit-H.c: Add ifdefs for __hppa__ and __ia64__.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90324 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/testsuite/gcc.dg/uninit-H.c | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 16f5c4a190b..2f176e9d860 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2004-11-08 Steve Ellcey <sje@cup.hp.com> + * testsuite/gcc.dg/uninit-H.c: Add ifdefs for __hppa__ and __ia64__. + +2004-11-08 Steve Ellcey <sje@cup.hp.com> + * testsuite/gcc.dg/20030225-2.c: Add prototype for abort and exit. 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 |

