2008-01-25 Douglas Gregor <doug.gregor@gmail.com>
[official-gcc.git] / gcc / testsuite / treelang / execute / funccall-2.tree
blob43911c9f4f8a05abe32ffe009ddef4ab8ebcf590
1 // { dg-do run }
2 external_definition int main (int argc);
4 static int foo (int bba);
6 foo
8         automatic int bar;
10         bar = bba + +1;
11         return bar;
14 main
16   automatic int aaa = +3;
18   aaa = foo (argc);
19   
20   if (aaa == +2)
21     { 
22       return +0;
23     }
24   else
25     {
26       return +1;
27     }