mirror of
https://github.com/golang/go
synced 2024-11-23 07:20:06 -07:00
cmd/compile/internal/ssa: regenerate rewrite rules
Slight differences existed due to a change in rulegen after the FMA intrinsic code was generated. Change-Id: Ieb6b3ec1b29985a18d1bbbc5a820ffea699306fd Reviewed-on: https://go-review.googlesource.com/c/go/+/202443 Run-TryBot: Michael Munday <mike.munday@ibm.com> Reviewed-by: Keith Randall <khr@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
b282efa022
commit
7c3060e923
@ -52335,7 +52335,6 @@ func rewriteValueAMD64_OpFloor_0(v *Value) bool {
|
||||
}
|
||||
func rewriteValueAMD64_OpFma_0(v *Value) bool {
|
||||
// match: (Fma x y z)
|
||||
// cond:
|
||||
// result: (VFMADD231SD z x y)
|
||||
for {
|
||||
z := v.Args[2]
|
||||
|
@ -17163,7 +17163,6 @@ func rewriteValueARM_OpEqPtr_0(v *Value) bool {
|
||||
}
|
||||
func rewriteValueARM_OpFma_0(v *Value) bool {
|
||||
// match: (Fma x y z)
|
||||
// cond:
|
||||
// result: (FMULAD z x y)
|
||||
for {
|
||||
z := v.Args[2]
|
||||
|
@ -28569,7 +28569,6 @@ func rewriteValueARM64_OpFloor_0(v *Value) bool {
|
||||
}
|
||||
func rewriteValueARM64_OpFma_0(v *Value) bool {
|
||||
// match: (Fma x y z)
|
||||
// cond:
|
||||
// result: (FMADDD z x y)
|
||||
for {
|
||||
z := v.Args[2]
|
||||
|
@ -1992,7 +1992,6 @@ func rewriteValuePPC64_OpFloor_0(v *Value) bool {
|
||||
}
|
||||
func rewriteValuePPC64_OpFma_0(v *Value) bool {
|
||||
// match: (Fma x y z)
|
||||
// cond:
|
||||
// result: (FMADD x y z)
|
||||
for {
|
||||
z := v.Args[2]
|
||||
|
@ -1922,7 +1922,6 @@ func rewriteValueS390X_OpFloor_0(v *Value) bool {
|
||||
}
|
||||
func rewriteValueS390X_OpFma_0(v *Value) bool {
|
||||
// match: (Fma x y z)
|
||||
// cond:
|
||||
// result: (FMADD z x y)
|
||||
for {
|
||||
z := v.Args[2]
|
||||
|
Loading…
Reference in New Issue
Block a user