File tree 3 files changed +3
-4
lines changed
src/cmd/compile/internal/ssa 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ Optimizations (better compiled code)
29
29
30
30
Optimizations (better compiler)
31
31
-------------------------------
32
- - OpStore uses 3 args. Increase the size of Value.argstorage to 3?
33
32
- Handle signed division overflow and sign extension earlier
34
33
35
34
Regalloc
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ func TestSizeof(t *testing.T) {
22
22
_32bit uintptr // size on 32bit platforms
23
23
_64bit uintptr // size on 64bit platforms
24
24
}{
25
- {Value {}, 60 , 104 },
25
+ {Value {}, 64 , 112 },
26
26
{Block {}, 124 , 232 },
27
27
}
28
28
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ type Value struct {
38
38
// Source line number
39
39
Line int32
40
40
41
- // Storage for the first two args
42
- argstorage [2 ]* Value
41
+ // Storage for the first three args
42
+ argstorage [3 ]* Value
43
43
}
44
44
45
45
// Examples:
You can’t perform that action at this time.
0 commit comments