From a03bdc3e6bea34abd5077205371e6fb9ef354481 Mon Sep 17 00:00:00 2001 From: Matthew Dempsky Date: Mon, 29 Feb 2016 15:01:00 -0800 Subject: runtime: eliminate unnecessary type conversions Automated refactoring produced using github.com/mdempsky/unconvert. Change-Id: Iacf871a4f221ef17f48999a464ab2858b2bbaa90 Reviewed-on: https://go-review.googlesource.com/20071 Reviewed-by: Austin Clements Run-TryBot: Matthew Dempsky TryBot-Result: Gobot Gobot --- src/runtime/softfloat_arm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/runtime/softfloat_arm.go') diff --git a/src/runtime/softfloat_arm.go b/src/runtime/softfloat_arm.go index 99048d612e..b1f1a72925 100644 --- a/src/runtime/softfloat_arm.go +++ b/src/runtime/softfloat_arm.go @@ -609,7 +609,7 @@ func sfloat2(pc uint32, regs *[15]uint32) uint32 { pc = uint32(funcPC(_sfloatpanic)) break } - pc += 4 * uint32(skip) + pc += 4 * skip } if first { print("sfloat2 ", pc, " ", hex(*(*uint32)(unsafe.Pointer(uintptr(pc)))), "\n") -- cgit v1.3-5-g9baa