Skip to content

Commit b45704a

Browse files
[clang] CommonArgs - Fix local variable name case
Co-authored-by: Tarun Prabhu <[email protected]> Signed-off-by: Kajetan Puchalski <[email protected]>
1 parent e78240d commit b45704a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Driver/ToolChains/CommonArgs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3181,7 +3181,7 @@ bool tools::shouldEnableVectorizerAtOLevel(const ArgList &Args, bool isSlpVec) {
31813181
/// Enable -fvectorize based on the optimization level selected.
31823182
void tools::handleVectorizeLoopsArgs(const ArgList &Args,
31833183
ArgStringList &CmdArgs) {
3184-
bool enableVec = shouldEnableVectorizerAtOLevel(Args, false);
3184+
bool EnableVec = shouldEnableVectorizerAtOLevel(Args, false);
31853185
OptSpecifier vectorizeAliasOption =
31863186
enableVec ? options::OPT_O_Group : options::OPT_fvectorize;
31873187
if (Args.hasFlag(options::OPT_fvectorize, vectorizeAliasOption,

0 commit comments

Comments
 (0)