aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@libertysurf.fr>2004-11-24 11:36:40 +0100
committerEric Botcazou <ebotcazou@gcc.gnu.org>2004-11-24 10:36:40 +0000
commit592590f532f891f2edf87b73ae8e632bbfb08421 (patch)
tree5924a7cc973b3e36117956b85e0c06ed2fd3aa7f
parent986ce40875068a1529e35f58b18185d8b815db5a (diff)
downloadgcc-592590f532f891f2edf87b73ae8e632bbfb08421.zip
gcc-592590f532f891f2edf87b73ae8e632bbfb08421.tar.gz
gcc-592590f532f891f2edf87b73ae8e632bbfb08421.tar.bz2
align.c: Do not include <stdint.h>.
* gcc.target/sparc/align.c: Do not include <stdint.h>. * gcc.target/sparc/pdist.c: Likewise. From-SVN: r91144
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gcc.target/sparc/align.c3
-rw-r--r--gcc/testsuite/gcc.target/sparc/pdist.c4
3 files changed, 9 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 6c75fd8..8edf27c 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,7 +1,11 @@
+2004-11-24 Eric Botcazou <ebotcazou@libertysurf.fr>
+
+ * gcc.target/sparc/align.c: Do not include <stdint.h>.
+ * gcc.target/sparc/pdist.c: Likewise.
+
2004-11-24 Paolo Bonzini <bonzini@gnu.org>
PR c++/16882
-
* g++.dg/conversion/simd1.C: New test.
2004-11-23 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
diff --git a/gcc/testsuite/gcc.target/sparc/align.c b/gcc/testsuite/gcc.target/sparc/align.c
index 9a98272..d9cc162 100644
--- a/gcc/testsuite/gcc.target/sparc/align.c
+++ b/gcc/testsuite/gcc.target/sparc/align.c
@@ -1,6 +1,7 @@
/* { dg-do compile } */
/* { dg-options "-mcpu=ultrasparc -mvis" } */
-#include <stdint.h>
+
+typedef long long int64_t;
typedef int vec32 __attribute__((vector_size(8)));
typedef short vec16 __attribute__((vector_size(8)));
typedef char vec8 __attribute__((vector_size(8)));
diff --git a/gcc/testsuite/gcc.target/sparc/pdist.c b/gcc/testsuite/gcc.target/sparc/pdist.c
index d2ba981..48ca0db 100644
--- a/gcc/testsuite/gcc.target/sparc/pdist.c
+++ b/gcc/testsuite/gcc.target/sparc/pdist.c
@@ -1,7 +1,7 @@
/* { dg-do compile } */
/* { dg-options "-mcpu=ultrasparc -mvis" } */
-#include <stdint.h>
+typedef long long int64_t;
typedef char vec8 __attribute__((vector_size(8)));
int64_t foo (vec8 a, vec8 b) {
@@ -20,4 +20,4 @@ int64_t baz (vec8 a, vec8 b, int64_t d) {
return e + d;
}
-/* { dg-final { scan-assembler-times "pdist" 4 } } */
+/* { dg-final { scan-assembler-times "pdist\t%" 3 } } */