aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC++/2003-11-27-MultipleInheritanceThunk.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-08-20 00:17:58 +0000
committerEric Christopher <echristo@apple.com>2011-08-20 00:17:58 +0000
commitca020c124eacc6edede13535d9effb152fe699fd (patch)
tree8f112373335214674f15cff7d8493e1159acd6bc /test/FrontendC++/2003-11-27-MultipleInheritanceThunk.cpp
parentac3656ed7a67eaacb8d2c62e1841ed4df799f72a (diff)
Remove the rest of the files in FrontendC++ and the directory itself.
All tests have been updated and migrated into clang or were obsolete. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138165 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2003-11-27-MultipleInheritanceThunk.cpp')
-rw-r--r--test/FrontendC++/2003-11-27-MultipleInheritanceThunk.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/FrontendC++/2003-11-27-MultipleInheritanceThunk.cpp b/test/FrontendC++/2003-11-27-MultipleInheritanceThunk.cpp
deleted file mode 100644
index 99cfc8d21d..0000000000
--- a/test/FrontendC++/2003-11-27-MultipleInheritanceThunk.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
-
-
-struct CallSite {
- int X;
-
- CallSite(const CallSite &CS);
-};
-
-struct AliasAnalysis {
- int TD;
-
- virtual int getModRefInfo(CallSite CS);
-};
-
-
-struct Pass {
- int X;
- virtual int foo();
-};
-
-struct AliasAnalysisCounter : public Pass, public AliasAnalysis {
- int getModRefInfo(CallSite CS) {
- return 0;
- }
-};
-
-AliasAnalysisCounter AAC;