Revert:
authorEric Christopher <echristo@apple.com>
Wed, 17 Feb 2010 08:53:27 +0000 (08:53 +0000)
committerEric Christopher <echristo@apple.com>
Wed, 17 Feb 2010 08:53:27 +0000 (08:53 +0000)
r95605 | dpatel | 2010-02-08 15:27:46 -0800 (Mon, 08 Feb 2010) | 2 lines

test case for r95604.

Which was the testcase for the patch reverted from llvm-gcc.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96474 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendC++/2010-02-08-NamespaceVar.cpp [deleted file]
test/FrontendC/2003-12-14-ExternInlineSupport.c

diff --git a/test/FrontendC++/2010-02-08-NamespaceVar.cpp b/test/FrontendC++/2010-02-08-NamespaceVar.cpp
deleted file mode 100644 (file)
index cd8247a..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// RUN: %llvmgxx -S %s -o - | grep cX
-
-namespace C {
-  int c = 1;
-  namespace {
-    int cX = 6;
-    void marker2() {
-     cX;
-    }
-  }
-}
-
-int main() {
-  C::marker2();
-  return 0;
-}
index 510d1f800f4c0a8b81dde1292a8257cc9ae44ec5..fb92ec773c1a6239a0a101b3b07779539329282a 100644 (file)
@@ -1,3 +1,3 @@
-// RUN: %llvmgcc -Os -xc %s -c -o - | llvm-dis | not grep dead_function
+// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | not grep dead_function
 
 extern __inline__ void dead_function() {}