Skip to content

Commit 053cc77

Browse files
committed
[AddressLowering] Gardening: Undefaulted argument.
That there was a default wasn't used anywhere.
1 parent 64ac0bd commit 053cc77

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/SILOptimizer/Mandatory/AddressLowering.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1520,8 +1520,9 @@ void AddressMaterialization::initializeComposingUse(Operand *operand) {
15201520
// storage after materializing the result. In particular, it materializes
15211521
// init_enum_data_addr, but not inject_enum_addr.
15221522
//
1523-
SILValue AddressMaterialization::recursivelyMaterializeStorage(
1524-
ValueStorage &storage, bool intoPhiOperand = false) {
1523+
SILValue
1524+
AddressMaterialization::recursivelyMaterializeStorage(ValueStorage &storage,
1525+
bool intoPhiOperand) {
15251526
// If this storage is already materialized, then simply return its
15261527
// address. This not only avoids redundant projections, but is necessary for
15271528
// correctness when emitting init_enum_data_addr.

0 commit comments

Comments
 (0)