blob: 299d4df70964d6c5517cbe7c7fa4a5f8c45c7ecd [file] [log] [blame]
/* { dg-do compile { target { nonpic } } } */
/* { dg-options "-O2" } */
struct X
{
int c;
};
extern void bar(struct X *);
void foo ()
{
struct X x;
bar (&x);
bar (&x);
bar (&x);
}
/* { dg-final { scan-assembler-times "r0,\[\\t \]*sp" 3 } } */