Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null |
2 | |||||
3 | /* Make sure the frontend is correctly marking static stuff as internal! */ | ||||
4 | |||||
5 | int X; | ||||
6 | static int Y = 12; | ||||
7 | |||||
8 | static void foo(int Z) { | ||||
9 | Y = Z; | ||||
10 | } | ||||
11 | |||||
12 | void *test() { | ||||
13 | foo(12); | ||||
14 | return &Y; | ||||
15 | } |