Update the command line here and update the comment, we're just going

to leave this as a debug only option for now.

llvm-svn: 149890
This commit is contained in:
Eric Christopher 2012-02-06 19:13:09 +00:00
parent 9033e2b358
commit 3622221c87
2 changed files with 4 additions and 3 deletions

View File

@ -868,9 +868,8 @@ void Driver::BuildUniversalActions(const ToolChain &TC,
Actions.push_back(new DsymutilJobAction(Inputs, types::TY_dSYM));
// Verify the debug output if we're in assert mode.
// TODO: The verifier is noisy by default so put this under an
// option for now.
// Verify the debug information if we're in debug mode and '-verify'
// is passed.
#ifndef NDEBUG
if (Args.hasArg(options::OPT_verify)) {
ActionList VerifyInputs;

View File

@ -4079,6 +4079,8 @@ void darwin::VerifyDebug::ConstructJob(Compilation &C, const JobAction &JA,
const char *LinkingOutput) const {
ArgStringList CmdArgs;
CmdArgs.push_back("--verify");
CmdArgs.push_back("--debug-info");
CmdArgs.push_back("--eh-frame");
assert(Inputs.size() == 1 && "Unable to handle multiple inputs.");
const InputInfo &Input = Inputs[0];