The test case has a typo in the big endian section that reversed two digits.
Fix committed as obvious.
2019-07-12 Bill Seurer <seurer@linux.vnet.ibm.com>
* gcc.dg/tree-ssa/vector-7.c: Fix typo.
From-SVN: r273459
+2019-07-12 Bill Seurer <seurer@linux.vnet.ibm.com>
+
+ * gcc.dg/tree-ssa/vector-7.c: Fix typo.
+
2019-07-12 Iain Sandoe <iain@sandoe.co.uk>
* gcc.dg/pr57438-2.c: Remove.
for (unsigned i = 0; i < 4; ++i)
if (v3[i] !=
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
- (v4si) { 0x01020304, 0x05060708, 0x090a0b0c, 0x0d0e0f01 }[i]
+ (v4si) { 0x01020304, 0x05060708, 0x090a0b0c, 0x0d0e0f10 }[i]
#elif __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
(v4si) { 0x04030201, 0x08070605, 0x0c0b0a09, 0x100f0e0d }[i]
#else