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-11-18-PtrMemConstantInitializer.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-11-18-PtrMemConstantInitializer.cpp')
-rw-r--r-- | test/FrontendC++/2003-11-18-PtrMemConstantInitializer.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/FrontendC++/2003-11-18-PtrMemConstantInitializer.cpp b/test/FrontendC++/2003-11-18-PtrMemConstantInitializer.cpp deleted file mode 100644 index 72609e7ccb..0000000000 --- a/test/FrontendC++/2003-11-18-PtrMemConstantInitializer.cpp +++ /dev/null @@ -1,14 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null - -struct Gfx { - void opMoveSetShowText(); -}; - -struct Operator { - void (Gfx::*func)(); -}; - -Operator opTab[] = { - {&Gfx::opMoveSetShowText}, -}; - |