view gcc/testsuite/gcc.dg/optimize-bswapsi-5.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
line wrap: on
line source

/* { dg-do compile } */
/* { dg-require-effective-target bswap } */
/* { dg-options "-O2 -fdump-tree-bswap" } */
/* { dg-additional-options "-march=z900" { target s390-*-* } } */

struct L { unsigned int l[2]; };
union U { double a; struct L l; } u;

void
foo (double a, struct L *p)
{
  u.a = a;
  struct L l = u.l, m;
  m.l[0] = (((l.l[1] & 0xff000000) >> 24)
	    | ((l.l[1] & 0x00ff0000) >> 8)
	    | ((l.l[1] & 0x0000ff00) << 8)
	    | ((l.l[1] & 0x000000ff) << 24));
  m.l[1] = (((l.l[0] & 0xff000000) >> 24)
	    | ((l.l[0] & 0x00ff0000) >> 8)
	    | ((l.l[0] & 0x0000ff00) << 8)
	    | ((l.l[0] & 0x000000ff) << 24));
  *p = m;
}

void
bar (double a, struct L *p)
{
  foo (a, p);
}

/* { dg-final { scan-tree-dump-times "32 bit bswap implementation found at" 2 "bswap" } } */