Skip to content

Commit

Permalink
[Flang] funderscoring intermittent failure fix
Browse files Browse the repository at this point in the history
There is an intermittent failure in the tests for the funderscoring driver option reported in (https://lab.llvm.org/buildbot/#/builders/21/builds/78228) that is caused by an uninitialized member variable.

Reviewed By: kkwli0

Differential Revision: https://reviews.llvm.org/D158187
  • Loading branch information
madanial0 committed Aug 21, 2023
1 parent 2dc5862 commit bfe390c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flang/lib/Optimizer/Transforms/ExternalNameConversion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ class ExternalNameConversionPass

private:
bool appendUnderscores;
bool usePassOpt;
bool usePassOpt = false;
};
} // namespace

Expand Down

0 comments on commit bfe390c

Please sign in to comment.