comparison gcc/testsuite/gcc.dg/pr84607.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 } */
2
3 extern void exit(int);
4 extern void abort(void);
5 int a[10];
6 int foo()
7 {
8 exit (0);
9 return 0;
10 }
11 int main()
12 {
13 if (&a[foo()])
14 abort ();
15 return 0;
16 }