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  
       6  void foo (void);
       7  
       8  int
       9  main (int argc, char *argv[])
      10  {
      11    foo ();
      12    return argc - 1;
      13  }