Use hasFlag instead of hasArg
authorDean Michael Berris <dberris@google.com>
Thu, 14 Jul 2016 06:37:46 +0000 (06:37 +0000)
committerDean Michael Berris <dberris@google.com>
Thu, 14 Jul 2016 06:37:46 +0000 (06:37 +0000)
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

llvm-svn: 275377

clang/lib/Driver/Tools.cpp

index 5437ef8..f1a9f41 100644 (file)
@@ -4609,8 +4609,8 @@ void Clang::ConstructJob(Compilation &C, const JobAction &JA,
 
   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)) {