comparison gcc/testsuite/gcc.c-torture/execute/960218-1.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 int glob; 1 int gl;
2 2
3 g (x) 3 g (x)
4 { 4 {
5 glob = x; 5 gl = x;
6 return 0; 6 return 0;
7 } 7 }
8 8
9 f (x) 9 f (x)
10 { 10 {
14 } 14 }
15 15
16 main () 16 main ()
17 { 17 {
18 f (3); 18 f (3);
19 if (glob != -4) 19 if (gl != -4)
20 abort (); 20 abort ();
21 exit (0); 21 exit (0);
22 } 22 }