1/* { dg-do compile } */
2/* { dg-options "-O -ffixed-ebp -mno-accumulate-outgoing-args" } */
3
4/* { dg-warning "fixed ebp register requires" "" { target *-*-* } 0 } */
5
6void foo (void);
7
8int
9main (int argc, char *argv[])
10{
11  foo ();
12  return argc - 1;
13}
14