view gcc/testsuite/gcc.dg/pr32912-3.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +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" } } */