mirror of https://github.com/golang/go.git
cmd/compile/internal/ssa: re-run generator
CL 163760 was submitted with this file generated from an old version of the code generator. Change-Id: I9a3b9a48f794f74567f82ef58637cb1820befd11 Reviewed-on: https://go-review.googlesource.com/c/go/+/167677 Reviewed-by: Richard Musiol <neelance@gmail.com>
This commit is contained in:
parent
47e42cdadc
commit
d98e0720bc
|
|
@ -26137,9 +26137,8 @@ func rewriteValuePPC64_OpRotateLeft32_0(v *Value) bool {
|
|||
// cond:
|
||||
// result: (ROTLW x y)
|
||||
for {
|
||||
_ = v.Args[1]
|
||||
x := v.Args[0]
|
||||
y := v.Args[1]
|
||||
x := v.Args[0]
|
||||
v.reset(OpPPC64ROTLW)
|
||||
v.AddArg(x)
|
||||
v.AddArg(y)
|
||||
|
|
@ -26151,9 +26150,8 @@ func rewriteValuePPC64_OpRotateLeft64_0(v *Value) bool {
|
|||
// cond:
|
||||
// result: (ROTL x y)
|
||||
for {
|
||||
_ = v.Args[1]
|
||||
x := v.Args[0]
|
||||
y := v.Args[1]
|
||||
x := v.Args[0]
|
||||
v.reset(OpPPC64ROTL)
|
||||
v.AddArg(x)
|
||||
v.AddArg(y)
|
||||
|
|
|
|||
Loading…
Reference in New Issue