OSDN Git Service

Don't use uint8_t.
authorspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 4 Apr 2010 15:30:54 +0000 (15:30 +0000)
committerMasaki Muranaka <monaka@monami-software.com>
Sun, 23 May 2010 05:16:32 +0000 (14:16 +0900)
2010-04-04  Sebastian Pop  <sebastian.pop@amd.com>

* gcc.dg/vect/pr43430-1.c: Don't use uint8_t.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157959 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/vect/pr43430-1.c

index d03d34d..3e0aa2a 100644 (file)
@@ -1,3 +1,7 @@
+2010-04-04  Sebastian Pop  <sebastian.pop@amd.com>
+
+       * gcc.dg/vect/pr43430-1.c: Don't use uint8_t.
+
 2010-04-02  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/43629
index 9a36983..da3675a 100644 (file)
@@ -5,15 +5,15 @@
 
 #define N 16
 
-typedef int uint8_t;
-uint8_t data_ch1[N + 1] =
+typedef int myint;
+myint data_ch1[N + 1] =
   { 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30 };
-uint8_t data_ch2[N + 1] =
+myint data_ch2[N + 1] =
   { 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30 };
 #define SUM 480
 
 __attribute__ ((noinline)) int
-foo (uint8_t * s1, uint8_t * s2, int stride)
+foo (myint * s1, myint * s2, int stride)
 {
   int score = 0;
   int x;