PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / split-6.c
blobb32cf8de20a59f7a5d926747531795a93d7e17d5
1 /* { dg-do run } */
2 /* { dg-require-effective-target split_stack } */
3 /* { dg-options "-fsplit-stack" } */
5 /* This test is like split-3.c, but tests with a smaller stack frame,
6 since that uses a different prologue. */
8 #include <stdarg.h>
9 #include <stdlib.h>
11 /* Use a noinline function to ensure that the buffer is not removed
12 from the stack. */
13 static void use_buffer (char *buf) __attribute__ ((noinline));
14 static void
15 use_buffer (char *buf)
17 buf[0] = '\0';
20 /* When using gold, the call to abort will force a stack split. */
22 static void
23 down (int i, ...)
25 char buf[1];
26 va_list ap;
28 va_start (ap, i);
29 if (va_arg (ap, int) != 1
30 || va_arg (ap, int) != 2
31 || va_arg (ap, int) != 3
32 || va_arg (ap, int) != 4
33 || va_arg (ap, int) != 5
34 || va_arg (ap, int) != 6
35 || va_arg (ap, int) != 7
36 || va_arg (ap, int) != 8
37 || va_arg (ap, int) != 9
38 || va_arg (ap, int) != 10)
39 abort ();
41 if (i > 0)
43 use_buffer (buf);
44 down (i - 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
48 int
49 main (void)
51 down (1000, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
52 return 0;