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++/2005-07-21-VirtualBaseAccess.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++/2005-07-21-VirtualBaseAccess.cpp')
-rw-r--r-- | test/FrontendC++/2005-07-21-VirtualBaseAccess.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/FrontendC++/2005-07-21-VirtualBaseAccess.cpp b/test/FrontendC++/2005-07-21-VirtualBaseAccess.cpp deleted file mode 100644 index ca600d6433..0000000000 --- a/test/FrontendC++/2005-07-21-VirtualBaseAccess.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// RUN: %llvmgxx -xc++ %s -S -o - | opt -die -S | not grep cast - -void foo(int*); - -struct FOO { - int X; -}; - -struct BAR : virtual FOO { BAR(); }; - -int testfn() { - BAR B; - foo(&B.X); -} |