Fix ICE in substring-handling building 502.gcc_r (PR 87562)
[official-gcc.git] / gcc / testsuite / gcc.dg / pr85388-5.c
blob6c161b9c5ae7c10be77ad407e7386b3c64df8288
1 /* { dg-do run { target { i?86-*-linux* i?86-*-gnu* x86_64-*-linux* } } } */
2 /* { dg-require-effective-target cet } */
3 /* { dg-require-effective-target split_stack } */
4 /* { dg-options "-fsplit-stack -fcf-protection" } */
6 /* This test is like split-3.c, but tests with a smaller stack frame,
7 since that uses a different prologue. */
9 #include <stdarg.h>
10 #include <stdlib.h>
12 /* Use a noinline function to ensure that the buffer is not removed
13 from the stack. */
14 static void use_buffer (char *buf) __attribute__ ((noinline));
15 static void
16 use_buffer (char *buf)
18 buf[0] = '\0';
21 /* When using gold, the call to abort will force a stack split. */
23 static void
24 down (int i, ...)
26 char buf[1];
27 va_list ap;
29 va_start (ap, i);
30 if (va_arg (ap, int) != 1
31 || va_arg (ap, int) != 2
32 || va_arg (ap, int) != 3
33 || va_arg (ap, int) != 4
34 || va_arg (ap, int) != 5
35 || va_arg (ap, int) != 6
36 || va_arg (ap, int) != 7
37 || va_arg (ap, int) != 8
38 || va_arg (ap, int) != 9
39 || va_arg (ap, int) != 10)
40 abort ();
42 if (i > 0)
44 use_buffer (buf);
45 down (i - 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
49 int
50 main (void)
52 down (1000, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
53 return 0;