From: Russ Cox Date: Wed, 20 Oct 2010 19:35:37 +0000 (-0400) Subject: arm: fix typo in softfloat X-Git-Tag: weekly.2010-10-20~9 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c026c91b5c628a3bdcda85e7238e165a4f2b2780;p=gostls13.git arm: fix typo in softfloat R=kaib CC=golang-dev https://golang.org/cl/2608041 --- diff --git a/src/pkg/runtime/arm/softfloat.c b/src/pkg/runtime/arm/softfloat.c index 353e960b64..096cc6da68 100644 --- a/src/pkg/runtime/arm/softfloat.c +++ b/src/pkg/runtime/arm/softfloat.c @@ -449,7 +449,7 @@ loadstore(uint32 *pc, uint32 *regs) isload = i>>20&1; p = i>>24&1; ud = i>>23&1; - tlen = i>>(22 - 1)&1 | i>>15&1; // NOTE(rsc): should this say i>>(22-1)&2 (not &1)? + tlen = i>>(22 - 1)&2 | i>>15&1; wb = i>>21&1; reg = i>>16 &0xf; freg = i>>12 &0x7;