File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lib/SILOptimizer/Transforms Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,16 +46,16 @@ namespace {
46
46
47
47
class LiveRange {
48
48
// / A list of destroy_values of the live range.
49
- SmallVector<SILInstruction *, 16 > destroys;
49
+ SmallVector<SILInstruction *, 2 > destroys;
50
50
51
51
// / A list of forwarding instructions that forward our destroys ownership, but
52
52
// / that are also able to forward guaranteed ownership.
53
- SmallVector<SILInstruction *, 16 > generalForwardingInsts;
53
+ SmallVector<SILInstruction *, 2 > generalForwardingInsts;
54
54
55
55
// / Consuming users that we were not able to understand as a forwarding
56
56
// / instruction or a destroy_value. These must be passed a strongly control
57
57
// / equivalent +1 value.
58
- SmallVector<SILInstruction *, 16 > unknownConsumingUsers;
58
+ SmallVector<SILInstruction *, 2 > unknownConsumingUsers;
59
59
60
60
public:
61
61
LiveRange (SILValue value);
You can’t perform that action at this time.
0 commit comments