mips.exp (setup_mips_tests): Set mips_abi to the default ABI.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr32912-3.c
blob674675a62245558ae3a7b0860261cff49116d2fa
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 typedef int __m128i __attribute__ ((__vector_size__ (16)));
6 __m128i
7 bar (void)
9 __m128i x = { 0x11111111, 0x22222222, 0x44444444 };
10 return ~x;
13 /* { dg-final { scan-tree-dump-not "~\{" "optimized" } } */
14 /* { dg-final { cleanup-tree-dump "optimized" } } */