diff options
Diffstat (limited to 'test/FrontendC/2002-02-16-RenamingTest.c')
-rw-r--r-- | test/FrontendC/2002-02-16-RenamingTest.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/FrontendC/2002-02-16-RenamingTest.c b/test/FrontendC/2002-02-16-RenamingTest.c deleted file mode 100644 index 6042b67..0000000 --- a/test/FrontendC/2002-02-16-RenamingTest.c +++ /dev/null @@ -1,18 +0,0 @@ -// RUN: %llvmgcc -S %s -o - | llvm-as -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); - } - } -} - |