Driver: Ignore -force_cpusubtype_ALL.

llvm-svn: 119803
This commit is contained in:
Daniel Dunbar 2010-11-19 16:23:35 +00:00
parent a750e8e6d8
commit 7c87433513
1 changed files with 3 additions and 0 deletions

View File

@ -840,6 +840,9 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
}
}
}
// Also ignore explicit -force_cpusubtype_ALL option.
(void) Args.hasArg(options::OPT_force__cpusubtype__ALL);
} else if (isa<PrecompileJobAction>(JA)) {
// Use PCH if the user requested it.
bool UsePCH = D.CCCUsePCH;