diff options
author | Eric Christopher <echristo@apple.com> | 2010-02-17 08:53:27 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-02-17 08:53:27 +0000 |
commit | a8572bbd39f50c17cbdce3a781b87a766f656881 (patch) | |
tree | a6c13f58f435af4784a4b9633d9062d0bcf0dc5e /test/FrontendC++ | |
parent | 84aa60b522e6ff02214912968eba1c037dd7bba1 (diff) | |
download | external_llvm-a8572bbd39f50c17cbdce3a781b87a766f656881.tar.gz external_llvm-a8572bbd39f50c17cbdce3a781b87a766f656881.tar.bz2 external_llvm-a8572bbd39f50c17cbdce3a781b87a766f656881.zip |
Revert:
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
Diffstat (limited to 'test/FrontendC++')
-rw-r--r-- | test/FrontendC++/2010-02-08-NamespaceVar.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test/FrontendC++/2010-02-08-NamespaceVar.cpp b/test/FrontendC++/2010-02-08-NamespaceVar.cpp deleted file mode 100644 index cd8247aeaa..0000000000 --- a/test/FrontendC++/2010-02-08-NamespaceVar.cpp +++ /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; -} |