diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-20 00:17:58 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-20 00:17:58 +0000 |
commit | ca020c124eacc6edede13535d9effb152fe699fd (patch) | |
tree | 8f112373335214674f15cff7d8493e1159acd6bc /test/FrontendC++/2003-12-08-ArrayOfPtrToMemberFunc.cpp | |
parent | ac3656ed7a67eaacb8d2c62e1841ed4df799f72a (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-12-08-ArrayOfPtrToMemberFunc.cpp')
-rw-r--r-- | test/FrontendC++/2003-12-08-ArrayOfPtrToMemberFunc.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/FrontendC++/2003-12-08-ArrayOfPtrToMemberFunc.cpp b/test/FrontendC++/2003-12-08-ArrayOfPtrToMemberFunc.cpp deleted file mode 100644 index b87e7869ed..0000000000 --- a/test/FrontendC++/2003-12-08-ArrayOfPtrToMemberFunc.cpp +++ /dev/null @@ -1,12 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null - -struct Evil { - void fun (); -}; -int foo(); -typedef void (Evil::*memfunptr) (); -static memfunptr jumpTable[] = { &Evil::fun }; - -void Evil::fun() { - (this->*jumpTable[foo()]) (); -} |