]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
testsuite/95363 - fix gcc.dg/vect/bb-slp-pr95271.c for ilp32
authorRichard Biener <rguenther@suse.de>
Thu, 28 May 2020 07:44:32 +0000 (09:44 +0200)
committerRichard Biener <rguenther@suse.de>
Thu, 28 May 2020 07:50:35 +0000 (09:50 +0200)
This fixes the testcase to avoid out of bound shifts on ilp32 targets.

2020-05-28  Richard Biener  <rguenther@suse.de>

PR testsuite/95363
* gcc.dg/vect/bb-slp-pr95271.c: Fix on ilp32 targets.

gcc/testsuite/gcc.dg/vect/bb-slp-pr95271.c

index 2f23598040564791e34544717dcc11ba10ad9e85..f6e266cce5c2ed59a1432833e7ea91036b258dd7 100644 (file)
@@ -1,19 +1,22 @@
 /* { dg-do compile } */
+/* { dg-require-effective-target stdint_types } */
 /* { dg-additional-options "-march=cooperlake" { target x86_64-*-* i?86-*-* } } */
 
+#include <stdint.h>
+
 int a;
 struct b c;
-long d;
+int64_t d;
 struct b {
-  unsigned long address;
-  unsigned long e;
+  uint64_t address;
+  uint64_t e;
 };
 void f()
 {
-  d = (long)(&a)[0] << 56 | (long)((unsigned char *)&a)[1] << 48 |
-      (long)((unsigned char *)&a)[2] << 40 |
-      (long)((unsigned char *)&a)[3] << 32 |
-      (long)((unsigned char *)&a)[4] << 24 | ((unsigned char *)&a)[5] << 16 |
+  d = (int64_t)(&a)[0] << 56 | (int64_t)((unsigned char *)&a)[1] << 48 |
+      (int64_t)((unsigned char *)&a)[2] << 40 |
+      (int64_t)((unsigned char *)&a)[3] << 32 |
+      (int64_t)((unsigned char *)&a)[4] << 24 | ((unsigned char *)&a)[5] << 16 |
       ((unsigned char *)&a)[6] << 8 | ((unsigned char *)&a)[7];
   c.address = c.e = d;
 }