aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Action.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-02-21 22:35:01 +0000
committerEric Christopher <echristo@gmail.com>2013-02-21 22:35:01 +0000
commit59320e770f90a59c74f2be10f198e3c390195628 (patch)
treec0c78faf45256362117931d83b0622dc57de92ff /lib/Driver/Action.cpp
parent7a95de68c093991047ed8d339479ccad51b88663 (diff)
Remove the SplitDebug action and replace with a set of commands
in the compilation setup. Note that this doesn't currently work for -no-integrated-as. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175813 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Action.cpp')
-rw-r--r--lib/Driver/Action.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/Driver/Action.cpp b/lib/Driver/Action.cpp
index 29f7ad2993..2b5bbee3db 100644
--- a/lib/Driver/Action.cpp
+++ b/lib/Driver/Action.cpp
@@ -33,7 +33,6 @@ const char *Action::getClassName(ActionClass AC) {
case LipoJobClass: return "lipo";
case DsymutilJobClass: return "dsymutil";
case VerifyJobClass: return "verify";
- case SplitDebugJobClass: return "split-debug";
}
llvm_unreachable("invalid class");
@@ -120,9 +119,3 @@ void VerifyJobAction::anchor() {}
VerifyJobAction::VerifyJobAction(ActionList &Inputs, types::ID Type)
: JobAction(VerifyJobClass, Inputs, Type) {
}
-
-void SplitDebugJobAction::anchor() {}
-
-SplitDebugJobAction::SplitDebugJobAction(ActionList &Inputs, types::ID Type)
- : JobAction(SplitDebugJobClass, Inputs, Type) {
-}