Dan Gohman | 2d65d35 | 2009-08-25 15:38:29 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 2 | |
3 | /* test that locals are renamed with . notation */ | ||||
4 | |||||
5 | void abc(void *); | ||||
6 | |||||
7 | void Test5(double X) { | ||||
8 | abc(&X); | ||||
9 | { | ||||
10 | int X; | ||||
11 | abc(&X); | ||||
12 | { | ||||
13 | float X; | ||||
14 | abc(&X); | ||||
15 | } | ||||
16 | } | ||||
17 | } | ||||
18 |