blob: 6042b67dc0cff5c736be42722b096b2b2684de6b [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3/* 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