comparison gcc/testsuite/gcc.dg/torture/pr85397-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* { dg-do run { target i?86-*-* x86_64-*-* } } */
2 /* { dg-require-effective-target cet } */
3 /* { dg-additional-options "-fcf-protection" } */
4
5 #define DEPTH 1000
6
7 int
8 x(int a)
9 {
10 __label__ xlab;
11 void y(int a)
12 {
13 if (a==0)
14 goto xlab;
15 y (a-1);
16 }
17 y (a);
18 xlab:;
19 return a;
20 }
21
22 int
23 main ()
24 {
25 if (x (DEPTH) != DEPTH)
26 __builtin_abort ();
27
28 return 0;
29 }