1 /* { dg-do compile } */
2 /* { dg-options "-O -ffixed-ebp -mno-accumulate-outgoing-args -mstackrealign -msse" } */
3 
4 /* { dg-warning "fixed ebp register requires" "" { target *-*-* } 0 } */
5 
6 typedef float V __attribute__((vector_size(16)));
7 
bar(V a)8 void bar (V a)
9 {
10   volatile V b = a;
11 }
12