diff options
author | Steve Ellcey <sje@cup.hp.com> | 2004-11-08 20:49:05 +0000 |
---|---|---|
committer | Steve Ellcey <sje@gcc.gnu.org> | 2004-11-08 20:49:05 +0000 |
commit | c7fa97d9603fd8782194e4c66c7a856ab789bed0 (patch) | |
tree | 3370c5f3e6763424a79f9c08565eaf9584882382 /gcc/testsuite/gcc.dg | |
parent | 948af8ae9c8d7e085c2a373aeefe9a917d96132d (diff) | |
download | gcc-c7fa97d9603fd8782194e4c66c7a856ab789bed0.zip gcc-c7fa97d9603fd8782194e4c66c7a856ab789bed0.tar.gz gcc-c7fa97d9603fd8782194e4c66c7a856ab789bed0.tar.bz2 |
20030225-2.c: Add prototype for abort and exit.
* testsuite/gcc.dg/20030225-2.c: Add prototype for abort and
exit.
From-SVN: r90297
Diffstat (limited to 'gcc/testsuite/gcc.dg')
-rw-r--r-- | gcc/testsuite/gcc.dg/20030225-2.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/20030225-2.c b/gcc/testsuite/gcc.dg/20030225-2.c index a21660d..fd83ab8 100644 --- a/gcc/testsuite/gcc.dg/20030225-2.c +++ b/gcc/testsuite/gcc.dg/20030225-2.c @@ -1,6 +1,9 @@ /* { dg-do run { target ia64-*-linux* } } */ /* { dg-options "-O3" } */ +extern void abort (void); +extern void exit (int); + int __attribute__((noinline, const)) ret4 (float value) { |