/// Always render this option joined with its value.
bool ForceJoinedRender : 1;
- /// Forward to generic GCC tools.
- bool ForwardToGCC : 1;
+ /// This option is only for consumed by the driver.
+ bool DriverOption : 1;
protected:
Option(OptionClass Kind, options::ID ID, const char *Name,
bool hasForceJoinedRender() const { return ForceJoinedRender; }
void setForceJoinedRender(bool Value) { ForceJoinedRender = Value; }
- bool hasForwardToGCC() const { return ForwardToGCC; }
- void setForwardToGCC(bool Value) { ForwardToGCC = Value; }
+ bool isDriverOption() const { return DriverOption; }
+ void setDriverOption(bool Value) { DriverOption = Value; }
+
+ bool hasForwardToGCC() const { return !DriverOption && !LinkerInput; }
/// getUnaliasedOption - Return the final option this option
/// aliases (itself, if the option has no alias).
case 'S':
assert(info.Kind == Option::JoinedClass && "Invalid option.");
Opt->setForceSeparateRender(true); break;
- case 'd': Opt->setForwardToGCC(false); break;
+ case 'd': Opt->setDriverOption(true); break;
case 'i': Opt->setNoOptAsInput(true); break;
case 'l': Opt->setLinkerInput(true); break;
case 'u': Opt->setUnsupported(true); break;
}
}
- // Linker inputs shouldn't be forwarded to GCC as arguments (they
- // will, however, be forwarded as inputs).
- if (Opt->isLinkerInput())
- Opt->setForwardToGCC(false);
-
return Opt;
}
: Kind(_Kind), ID(_ID), Name(_Name), Group(_Group), Alias(_Alias),
Unsupported(false), LinkerInput(false), NoOptAsInput(false),
ForceSeparateRender(false), ForceJoinedRender(false),
- ForwardToGCC(true)
+ DriverOption(false)
{
// Multi-level aliases are not supported, and alias options cannot