view gcc/testsuite/gcc.dg/pr78540.c @ 131:84e7813d76e9

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

/* PR middle-end/78540 */
/* { dg-do compile { target int128 } } */
/* { dg-options "-O2 -Wno-psabi" } */
/* { dg-additional-options "-march=core2" { target i?86-*-* x86_64-*-* } } */

typedef unsigned __int128 V __attribute__ ((vector_size (64)));
V g;

static inline V
foo (V a)
{
  V b, c;
  c[0] = 0;
  a += 2281559097;
  c ^= 0;
  b[0] = 0;
  return 1 + c + b + a;
}

V
bar ()
{
  V a = g, b = g;
  a[1] ^= 1;
  b[foo (a)[0] & 3] |= 1;
  return b;
}