blob: 6042b67dc0cff5c736be42722b096b2b2684de6b [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
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