1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/Regression/CFrontend/2002-02-16-RenamingTest.c
Tanya Lattner adb6e09ea7 Adding RUN lines.
llvm-svn: 17532
2004-11-06 22:41:00 +00:00

19 lines
237 B
C

// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
/* test that locals are renamed with . notation */
void abc(void *);
void Test5(double X) {
abc(&X);
{
int X;
abc(&X);
{
float X;
abc(&X);
}
}
}