@@ -289,7 +289,7 @@ static cl::opt<unsigned> ForceTargetMaxVectorInterleaveFactor(
289289 cl::desc(" A flag that overrides the target's max interleave factor for "
290290 " vectorized loops." ));
291291
292- cl::opt<unsigned > ForceTargetInstructionCost (
292+ cl::opt<unsigned > llvm:: ForceTargetInstructionCost (
293293 " force-target-instruction-cost" , cl::init(0 ), cl::Hidden,
294294 cl::desc(" A flag that overrides the target's expected cost for "
295295 " an instruction to a single constant value. Mostly "
@@ -352,22 +352,20 @@ static cl::opt<bool> PreferPredicatedReductionSelect(
352352 cl::desc(
353353 " Prefer predicating a reduction operation over an after loop select." ));
354354
355- namespace llvm {
356- cl::opt<bool > EnableVPlanNativePath (
355+ cl::opt<bool > llvm::EnableVPlanNativePath (
357356 " enable-vplan-native-path" , cl::Hidden,
358357 cl::desc (" Enable VPlan-native vectorization path with "
359358 " support for outer loop vectorization." ));
360359
361360cl::opt<bool >
362- VerifyEachVPlan (" vplan-verify-each" ,
361+ llvm:: VerifyEachVPlan (" vplan-verify-each" ,
363362#ifdef EXPENSIVE_CHECKS
364- cl::init (true ),
363+ cl::init (true ),
365364#else
366- cl::init (false ),
365+ cl::init (false ),
367366#endif
368- cl::Hidden,
369- cl::desc (" Verfiy VPlans after VPlan transforms." ));
370- } // namespace llvm
367+ cl::Hidden,
368+ cl::desc (" Verfiy VPlans after VPlan transforms." ));
371369
372370// This flag enables the stress testing of the VPlan H-CFG construction in the
373371// VPlan-native vectorization path. It must be used in conjuction with
0 commit comments