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 | a0b6bc5739efb56c791b7c2bbc39d414fc01b888 (patch) | |
tree | 81f25ad55438269a0a6fad2f98bf6df5db01587e /llvm/test/FrontendC++/2005-07-21-VirtualBaseAccess.cpp | |
parent | 3bf8310d42bad4dd2c49502f61caeb3cac376235 (diff) | |
download | bcm5719-llvm-a0b6bc5739efb56c791b7c2bbc39d414fc01b888.tar.gz bcm5719-llvm-a0b6bc5739efb56c791b7c2bbc39d414fc01b888.zip |
Remove migrated or obsolete tests.
llvm-svn: 138149
Diffstat (limited to 'llvm/test/FrontendC++/2005-07-21-VirtualBaseAccess.cpp')
-rw-r--r-- | llvm/test/FrontendC++/2005-07-21-VirtualBaseAccess.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/test/FrontendC++/2005-07-21-VirtualBaseAccess.cpp b/llvm/test/FrontendC++/2005-07-21-VirtualBaseAccess.cpp deleted file mode 100644 index ca600d6433d..00000000000 --- a/llvm/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); -} |