blob: f3d99f04c866c5d2a730352ad0add579c20e9e1e [file] [log] [blame]
/* PR middle-end/90139 */
typedef float __attribute__((vector_size (sizeof (float)))) V;
void bar (int, V *);
int l;
void
foo (void)
{
V n, b, o;
while (1)
switch (l)
{
case 0:
o = n;
n = b;
b = o;
bar (1, &o);
}
}