re PR target/78230 (Compile pr66178.c fail for mips64el-elf with N64 abi)
authorKito Cheng <kito.cheng@gmail.com>
Wed, 23 Nov 2016 19:20:33 +0000 (19:20 +0000)
committerJeff Law <law@gcc.gnu.org>
Wed, 23 Nov 2016 19:20:33 +0000 (12:20 -0700)
PR target/78230
* gcc.dg/torture/pr66178.c (test): Use uintptr_t instead of int.
(test2) Ditto.

From-SVN: r242792

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/torture/pr66178.c

index c74a422..b116ed6 100644 (file)
@@ -1,3 +1,9 @@
+2016-11-23  Kito Cheng <kito.cheng@gmail.com>
+
+       PR target/78230
+       * gcc.dg/torture/pr66178.c (test): Use uintptr_t instead of int.
+       (test2) Ditto.
+
 2016-11-23  Jakub Jelinek  <jakub@redhat.com>
 
        PR c++/77907
index c42996d..ee09cf6 100644 (file)
@@ -1,9 +1,11 @@
 /* { dg-do compile } */
 /* { dg-require-effective-target label_values } */
 
+typedef __UINTPTR_TYPE__ uintptr_t;
+
 int test(void)
 {
-    static int a =  ((char *)&&l1-(char *)&&l2)-1;
+    static uintptr_t a =  ((char *)&&l1-(char *)&&l2)-1;
 l1:
 l2:
     return a;
@@ -11,7 +13,7 @@ l2:
 
 int test2(void)
 {
-    static int a =  ((char *)&&l2-(char *)&&l3)+((char *)&&l1-(char *)&&l2);
+    static uintptr_t a =  ((char *)&&l2-(char *)&&l3)+((char *)&&l1-(char *)&&l2);
 l1:
 l2:
 l3: