blob: 952af90c87ef7f9432b94f44a22e455c6a676bc5 [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattner6374a522002-02-17 06:42:02 +00003/* test that locals are renamed with . notation */
4
5void abc(void *);
6
7void Test5(double X) {
8 abc(&X);
9 {
10 int X;
11 abc(&X);
12 {
13 float X;
14 abc(&X);
15 }
16 }
17}
18