mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
1233cd5217
llvm-svn: 1768
17 lines
182 B
C
17 lines
182 B
C
/* test that locals are renamed with . notation */
|
|
|
|
void abc(void *);
|
|
|
|
void Test5(double X) {
|
|
abc(&X);
|
|
{
|
|
int X;
|
|
abc(&X);
|
|
{
|
|
float X;
|
|
abc(&X);
|
|
}
|
|
}
|
|
}
|
|
|