From f18ed3853a9def03566ca44af1650c149af19711 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 9 Feb 2011 16:41:31 +0000 Subject: 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 --- test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp (limited to 'test/FrontendC++/2003-09-30-NestedFunctionDecl.cpp') 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(); -} -- cgit v1.2.3