Skip to content

Commit bfe390c

Browse files
committed
[Flang] funderscoring intermittent failure fix
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
1 parent 2dc5862 commit bfe390c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flang/lib/Optimizer/Transforms/ExternalNameConversion.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ class ExternalNameConversionPass
165165

166166
private:
167167
bool appendUnderscores;
168-
bool usePassOpt;
168+
bool usePassOpt = false;
169169
};
170170
} // namespace
171171

0 commit comments

Comments
 (0)