summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/20030913-1.c
blob: 5e33f50f560ccab6a0e5c15f515446fc595e762e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* Assignments via pointers pointing to global variables were being killed
   by SSA-DCE.  Test contributed by Paul Brook <paul@nowt.org>  */

int glob; 
 
void 
fn2(int ** q) 
{ 
  *q = &glob; 
} 
 
void test() 
{ 
  int *p; 
 
  fn2(&p); 
 
  *p=42; 
} 
 
int main() 
{ 
  test(); 
  if (glob != 42) abort(); 
  exit (0); 
}