aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorSteve Ellcey <sje@cup.hp.com>2004-10-11 21:02:48 +0000
committerSteve Ellcey <sje@gcc.gnu.org>2004-10-11 21:02:48 +0000
commitf713f2297716abda1bfae1d27c6aedfc7ad37998 (patch)
tree708629621f68faf9cf9f03759cd6bed3669afa5e /gcc
parentfc0ea003f9b1975837f2742d68600c52934137bd (diff)
downloadgcc-f713f2297716abda1bfae1d27c6aedfc7ad37998.zip
gcc-f713f2297716abda1bfae1d27c6aedfc7ad37998.tar.gz
gcc-f713f2297716abda1bfae1d27c6aedfc7ad37998.tar.bz2
ia64-asm-1.c: Add prototype for abort
* testsuite/gcc.dg/ia64-asm-1.c: Add prototype for abort * testsuite/gcc.dg/ia64-sync-1.c: Add prototype for abort and memcpy. * testsuite/gcc.dg/ia64-sync-2.c: Ditto. * testsuite/gcc.dg/ia64-sync-3.c: Ditto. From-SVN: r88904
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog8
-rw-r--r--gcc/testsuite/gcc.dg/ia64-asm-1.c2
-rw-r--r--gcc/testsuite/gcc.dg/ia64-sync-1.c3
-rw-r--r--gcc/testsuite/gcc.dg/ia64-sync-2.c3
-rw-r--r--gcc/testsuite/gcc.dg/ia64-sync-3.c3
5 files changed, 19 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 27a1bac..624e57e 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,11 @@
+2004-10-11 Steve Ellcey <sje@cup.hp.com>
+
+ * testsuite/gcc.dg/ia64-asm-1.c: Add prototype for abort
+ * testsuite/gcc.dg/ia64-sync-1.c: Add prototype for abort and
+ memcpy.
+ * testsuite/gcc.dg/ia64-sync-2.c: Ditto.
+ * testsuite/gcc.dg/ia64-sync-3.c: Ditto.
+
2004-10-11 Andrew Pinski <pinskia@physics.uc.edu>
* g++.dg/eh/cleanup5.C: Add dg-options "".
diff --git a/gcc/testsuite/gcc.dg/ia64-asm-1.c b/gcc/testsuite/gcc.dg/ia64-asm-1.c
index 48b24d3..7222bbd 100644
--- a/gcc/testsuite/gcc.dg/ia64-asm-1.c
+++ b/gcc/testsuite/gcc.dg/ia64-asm-1.c
@@ -1,6 +1,8 @@
/* { dg-do run { target ia64-*-* } } */
/* { dg-options } */
+extern void abort (void);
+
/* Test that "=S" properly avoids the post-increment on the memory address. */
static void foo(int *x)
diff --git a/gcc/testsuite/gcc.dg/ia64-sync-1.c b/gcc/testsuite/gcc.dg/ia64-sync-1.c
index d2a9b0b..c33bf3b 100644
--- a/gcc/testsuite/gcc.dg/ia64-sync-1.c
+++ b/gcc/testsuite/gcc.dg/ia64-sync-1.c
@@ -6,6 +6,9 @@
#include <ia64intrin.h>
+extern void abort (void);
+extern void *memcpy (void *, const void *, __SIZE_TYPE__);
+
static int AI[12];
static int init_noret_si[12] = { 0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 0, 0 };
static int test_noret_si[12] = { 1, 1, 1, 0, 1, 4, 22, -12, 7, 8, 9, 7 };
diff --git a/gcc/testsuite/gcc.dg/ia64-sync-2.c b/gcc/testsuite/gcc.dg/ia64-sync-2.c
index 8d745b0..e7dd65f 100644
--- a/gcc/testsuite/gcc.dg/ia64-sync-2.c
+++ b/gcc/testsuite/gcc.dg/ia64-sync-2.c
@@ -5,6 +5,9 @@
#include <ia64intrin.h>
+extern void abort (void);
+extern void *memcpy (void *, const void *, __SIZE_TYPE__);
+
static int AI[18];
static int init_si[18] = { 0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,0,0,0 };
static int test_si[18] = { 1,1,1,1,1,4,22,-12,7,8,9,7,1,-12,7,8,9,7 };
diff --git a/gcc/testsuite/gcc.dg/ia64-sync-3.c b/gcc/testsuite/gcc.dg/ia64-sync-3.c
index e718c11..c2772f7 100644
--- a/gcc/testsuite/gcc.dg/ia64-sync-3.c
+++ b/gcc/testsuite/gcc.dg/ia64-sync-3.c
@@ -5,6 +5,9 @@
#include <ia64intrin.h>
+extern void abort (void);
+extern void *memcpy (void *, const void *, __SIZE_TYPE__);
+
static int AI[4];
static int init_si[4] = { -30,-30,-50,-50 };
static int test_si[4] = { -115,-115,25,25 };