ccc: Mark -combine option as unsupported.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63348 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/ccc/ccclib/Arguments.py b/tools/ccc/ccclib/Arguments.py
index 051498f..bb25913 100644
--- a/tools/ccc/ccclib/Arguments.py
+++ b/tools/ccc/ccclib/Arguments.py
@@ -520,7 +520,7 @@
self.EOption = self.addOption(FlagOption('-E'))
self.SOption = self.addOption(FlagOption('-S'))
self.cOption = self.addOption(FlagOption('-c'))
- self.combineOption = self.addOption(FlagOption('-combine'))
+ self.combineOption = self.addOption(FlagOption('-combine', unsupported=True))
self.noIntegratedCPPOption = self.addOption(FlagOption('-no-integrated-cpp'))
self.pipeOption = self.addOption(FlagOption('-pipe'))
self.saveTempsOption = self.addOption(FlagOption('-save-temps'))
diff --git a/tools/ccc/ccclib/Driver.py b/tools/ccc/ccclib/Driver.py
index bdcdcb7..2f4cc14 100644
--- a/tools/ccc/ccclib/Driver.py
+++ b/tools/ccc/ccclib/Driver.py
@@ -443,10 +443,6 @@
if finalPhaseOpt:
self.claim(finalPhaseOpt)
- # FIXME: Support -combine.
- if hasCombine:
- raise NotImplementedError,"-combine is not yet supported"
-
# Reject -Z* at the top level for now.
arg = args.getLastArg(self.parser.ZOption)
if arg: