Commit d98e0720 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

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/+/167677Reviewed-by: default avatarRichard Musiol <neelance@gmail.com>
parent 47e42cda
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment