* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / ext / vector2.C
blobc1737dbb492aa54d8b3e875efaed26312935a37a
1 // PR c++/23337; caused an ICE in component_ref_field_offset
2 // { dg-options "" }
3 // { dg-options "-mmmx" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */
4 // { dg-prune-output "mangled name" }
5 typedef int vec __attribute__ ((vector_size (8)));
6 extern int bar (vec);
7 int
8 foo (int i)
10   vec a[] = { (vec) { 0, i }, (vec) { 4, 5 } };
11   return bar (a[0]) + bar (a[1]);