public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r12-5616] [Committed] PR testsuite/103477: Fix big-endian mistake in new test case.
@ 2021-11-30 10:37 Roger Sayle
  0 siblings, 0 replies; only message in thread
From: Roger Sayle @ 2021-11-30 10:37 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:92de188ea3d36ec012b6d42959d4722e42524256

commit r12-5616-g92de188ea3d36ec012b6d42959d4722e42524256
Author: Roger Sayle <roger@nextmovesoftware.com>
Date:   Tue Nov 30 10:25:35 2021 +0000

    [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  <roger@nextmovesoftware.com>
    
    gcc/testsuite/ChangeLog
            PR testsuite/103477
            * gcc.dg/tree-ssa/pr103345.c: Correct xor test for big-endian.

Diff:
---
 gcc/testsuite/gcc.dg/tree-ssa/pr103345.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gcc/testsuite/gcc.dg/tree-ssa/pr103345.c b/gcc/testsuite/gcc.dg/tree-ssa/pr103345.c
index 94388b541c1..dc8810ab5af 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
 }


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-11-30 10:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-30 10:37 [gcc r12-5616] [Committed] PR testsuite/103477: Fix big-endian mistake in new test case Roger Sayle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).