From: Roger Sayle Date: Tue, 30 Nov 2021 10:25:35 +0000 (+0000) Subject: [Committed] PR testsuite/103477: Fix big-endian mistake in new test case. X-Git-Tag: basepoints/gcc-13~2697 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92de188ea3d36ec012b6d42959d4722e42524256;p=thirdparty%2Fgcc.git [Committed] PR testsuite/103477: Fix big-endian mistake in new test case. I missed a spot when adding the "#if __BYTE_ORDER__ == ..." guards to the new test case for PR tree-optimization/103345. Committed as obvious. 2021-11-30 Roger Sayle gcc/testsuite/ChangeLog PR testsuite/103477 * gcc.dg/tree-ssa/pr103345.c: Correct xor test for big-endian. --- diff --git a/gcc/testsuite/gcc.dg/tree-ssa/pr103345.c b/gcc/testsuite/gcc.dg/tree-ssa/pr103345.c index 94388b541c1e..dc8810ab5af2 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/pr103345.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/pr103345.c @@ -42,10 +42,10 @@ uint32_t load_le_32_xor(const uint8_t *ptr) ((uint32_t)ptr[2] << 16) ^ ((uint32_t)ptr[3] << 24); #else - return ((uint32_t)ptr[0]) ^ - ((uint32_t)ptr[1] << 8) ^ - ((uint32_t)ptr[2] << 16) ^ - ((uint32_t)ptr[3] << 24); + return ((uint32_t)ptr[3]) ^ + ((uint32_t)ptr[2] << 8) ^ + ((uint32_t)ptr[1] << 16) ^ + ((uint32_t)ptr[0] << 24); #endif }