summaryrefslogtreecommitdiff
path: root/test/C++Frontend
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-02-12 19:02:30 +0000
committerChris Lattner <sabre@nondot.org>2005-02-12 19:02:30 +0000
commit2b130558358b0387d211b50057bd33a45216a112 (patch)
tree570541982a4764937af15397201138de0744a0e1 /test/C++Frontend
parentf6249261a9467cb93c4ccf5ae24798e2977db5a0 (diff)
downloadllvm-2b130558358b0387d211b50057bd33a45216a112.tar.gz
llvm-2b130558358b0387d211b50057bd33a45216a112.tar.bz2
llvm-2b130558358b0387d211b50057bd33a45216a112.tar.xz
This test is invalid
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/C++Frontend')
-rw-r--r--test/C++Frontend/2004-10-04-ExternalGlobalConstant.cpp.tr12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/C++Frontend/2004-10-04-ExternalGlobalConstant.cpp.tr b/test/C++Frontend/2004-10-04-ExternalGlobalConstant.cpp.tr
deleted file mode 100644
index 48e7240ae1..0000000000
--- a/test/C++Frontend/2004-10-04-ExternalGlobalConstant.cpp.tr
+++ /dev/null
@@ -1,12 +0,0 @@
-// RUN: %llvmgcc -xc++ -S -o - %s | grep %y | not grep constant
-
-struct Y {
- int A;
- Y();
-};
-
-// This global cannot be marked 'constant' because the ctor can modify it.
-extern const Y y;
-
-void foo(...);
-int bar() { foo(&y); }