commit | 278dfafab278ea804b51f53c4e409b8eb88c4b7c | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Feb 17 06:42:02 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Feb 17 06:42:02 2002 +0000 |
tree | 721a3f0aaf347a084d5e6a73951257aae6863b57 | |
parent | 4ed4caf44a438382b1b7c44e3dc97a8a32e6764c [diff] |
New testcase llvm-svn: 1768
diff --git a/llvm/test/Regression/CFrontend/2002-02-16-RenamingTest.c b/llvm/test/Regression/CFrontend/2002-02-16-RenamingTest.c new file mode 100644 index 0000000..47931b3 --- /dev/null +++ b/llvm/test/Regression/CFrontend/2002-02-16-RenamingTest.c
@@ -0,0 +1,16 @@ +/* test that locals are renamed with . notation */ + +void abc(void *); + +void Test5(double X) { + abc(&X); + { + int X; + abc(&X); + { + float X; + abc(&X); + } + } +} +