1 /* { dg-do compile { target ia32 } } */
2 /* { dg-options "-O2 -maccumulate-outgoing-args -mincoming-stack-boundary=2 -mpreferred-stack-boundary=3 -mregparm=3 -mtune-ctrl=epilogue_using_move" } */
3 
4 extern void bar (long long int, int);
5 
6 long long int
fn1(long long int x)7 fn1 (long long int x)
8 {
9   bar (x, 1);
10   return x;
11 }
12 
13 /* { dg-final { scan-assembler-times "movl\[\\t \]*-8\\(%ebp\\),\[\\t \]*%esi" 1 } } */
14 /* { dg-final { scan-assembler-times "movl\[\\t \]*-4\\(%ebp\\),\[\\t \]*%edi" 1 } } */
15