diff options
author | Chris Lattner <sabre@nondot.org> | 2011-02-09 16:41:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-02-09 16:41:31 +0000 |
commit | f18ed3853a9def03566ca44af1650c149af19711 (patch) | |
tree | ac77ee495bc3fabce986a439e015fa5e2f957811 /test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp | |
parent | 71f4391b2e50c4db2e97e13f902300f77a8718e7 (diff) | |
download | external_llvm-f18ed3853a9def03566ca44af1650c149af19711.tar.gz external_llvm-f18ed3853a9def03566ca44af1650c149af19711.tar.bz2 external_llvm-f18ed3853a9def03566ca44af1650c149af19711.zip |
remove a small scattering of basically pointless tests. These are
all covered by llvm-test, which is what they were reduced from back
in 2003.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125189 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp')
-rw-r--r-- | test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp b/test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp deleted file mode 100644 index 94c1199896..0000000000 --- a/test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp +++ /dev/null @@ -1,12 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null - -// The C++ front-end thinks the two foo's are different, the LLVM emitter -// thinks they are the same. The disconnect causes problems. - -void foo() { } - -void bar() { - void foo(); - - foo(); -} |