Skip to content

Commit 4258267

Browse files
authored
Merge pull request swiftlang#33983 from gottesmm/pr-40b05a478548bd5fb2304ea73034fe9ff542c9d4
[semantic-arc] Fix an initialization thinko.
2 parents d669247 + 22ef39a commit 4258267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SILOptimizer/SemanticARC/Context.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ struct LLVM_LIBRARY_VISIBILITY Context {
8787
Context(SILFunction &fn, bool onlyGuaranteedOpts, InstModCallbacks callbacks)
8888
: fn(fn), deadEndBlocks(), lifetimeFrontier(),
8989
addressToExhaustiveWriteListCache(constructCacheValue),
90-
onlyGuaranteedOpts(onlyGuaranteedOpts) {}
90+
onlyGuaranteedOpts(onlyGuaranteedOpts), instModCallbacks(callbacks) {}
9191

9292
void verify() const;
9393

0 commit comments

Comments
 (0)