view gcc/testsuite/gcc.dg/pr32912-3.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

/* { dg-do compile } */
/* { dg-options "-w -O2 -fdump-tree-optimized" } */

typedef int __m128i __attribute__ ((__vector_size__ (16)));

__m128i
bar (void)
{
  __m128i x = { 0x11111111, 0x22222222, 0x44444444 };
  return ~x;
}

/* { dg-final { scan-tree-dump-not "~\{" "optimized" } } */