Driver: Add missing claim() for -mllvm options.

llvm-svn: 101618
This commit is contained in:
Daniel Dunbar 2010-04-17 06:10:00 +00:00
parent 59b70eacad
commit 88534f4201
1 changed files with 2 additions and 0 deletions

View File

@ -1330,6 +1330,8 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
Args.AddAllArgValues(CmdArgs, options::OPT_Xclang);
for (arg_iterator it = Args.filtered_begin(options::OPT_mllvm),
ie = Args.filtered_end(); it != ie; ++it) {
it->claim();
// We translate this by hand to the -cc1 argument, since nightly test uses
// it and developers have been trained to spell it with -mllvm.
if (llvm::StringRef(it->getValue(Args, 0)) == "-disable-llvm-optzns")