Commit d64c6837 by Bill Seurer Committed by Bill Seurer

[PATCH] Fix typo in test case.

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
parent 61fba267
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.
......
......@@ -25,7 +25,7 @@ main()
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment