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:
Brad Fitzpatrick 2019-03-14 17:22:00 +00:00
parent 47e42cdadc
commit d98e0720bc
1 changed files with 2 additions and 4 deletions

View File

@ -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)