Skip to content

Commit fd6060b

Browse files
authored
Merge pull request #30152 from gottesmm/pr-c76b9e059534e964d03ea4628f3d7325598632fa
2 parents 21a2cdb + 5adc471 commit fd6060b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/SILOptimizer/Transforms/SemanticARCOpts.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,16 @@ namespace {
4646

4747
class LiveRange {
4848
/// A list of destroy_values of the live range.
49-
SmallVector<SILInstruction *, 16> destroys;
49+
SmallVector<SILInstruction *, 2> destroys;
5050

5151
/// A list of forwarding instructions that forward our destroys ownership, but
5252
/// that are also able to forward guaranteed ownership.
53-
SmallVector<SILInstruction *, 16> generalForwardingInsts;
53+
SmallVector<SILInstruction *, 2> generalForwardingInsts;
5454

5555
/// Consuming users that we were not able to understand as a forwarding
5656
/// instruction or a destroy_value. These must be passed a strongly control
5757
/// equivalent +1 value.
58-
SmallVector<SILInstruction *, 16> unknownConsumingUsers;
58+
SmallVector<SILInstruction *, 2> unknownConsumingUsers;
5959

6060
public:
6161
LiveRange(SILValue value);

0 commit comments

Comments
 (0)