blob: a45441845f96ba86cdf14e3c19eaeafc29983804 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* { dg-do run } */
/* { dg-require-effective-target ia32 } */
/* { dg-options "-mstackrealign -O2" } */
extern void abort (void);
__attribute__((noinline)) static void foo (int i1, int i2, int i3)
{
if (i3 != 3)
abort ();
}
int main (int argc, char **argv)
{
foo (1, 2, 3);
return 0;
}
|