Summary: Fix the build to use hasFlag instead of hasArg for checking some flags.
Reviewers: echristo
Subscribers: mehdi_amini, cfe-commits
Differential Revision: http://reviews.llvm.org/D22338
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@275377
91177308-0d34-0410-b5e6-
96231b3b80d8
Args.AddAllArgs(CmdArgs, options::OPT_finstrument_functions);
- if (Args.hasArg(options::OPT_fxray_instrument,
- options::OPT_fnoxray_instrument, false)) {
+ if (Args.hasFlag(options::OPT_fxray_instrument,
+ options::OPT_fnoxray_instrument, false)) {
CmdArgs.push_back("-fxray-instrument");
if (Arg *A = Args.getLastArg(options::OPT_fxray_instruction_threshold_,
options::OPT_fxray_instruction_threshold_EQ)) {