diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-19 23:41:50 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-19 23:41:50 +0000 |
commit | 483699c2961f21b76914bbf8c1b5a29a3c15672b (patch) | |
tree | b3f5f850259c714d0916178bd335da3838f799d4 /test/FrontendC++/2006-09-27-Debug-Protection.cpp | |
parent | 93d39be5300702d8c9892ec04a492a6056926462 (diff) |
Remove migrated or obsolete tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2006-09-27-Debug-Protection.cpp')
-rw-r--r-- | test/FrontendC++/2006-09-27-Debug-Protection.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/FrontendC++/2006-09-27-Debug-Protection.cpp b/test/FrontendC++/2006-09-27-Debug-Protection.cpp deleted file mode 100644 index 2a70a0f5b4..0000000000 --- a/test/FrontendC++/2006-09-27-Debug-Protection.cpp +++ /dev/null @@ -1,12 +0,0 @@ -// RUN: %llvmgxx -O0 -S -g -o - %s | grep {i32 1,} -// RUN: %llvmgxx -O0 -S -g -o - %s | grep {i32 2,} -class A { -public: - int x; -protected: - int y; -private: - int z; -}; - -A a; |