mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 23:18:51 +00:00
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);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|