1
0
mirror of https://github.com/golang/go synced 2024-11-21 15:34:45 -07:00

arm: fix typo in softfloat

R=kaib
CC=golang-dev
https://golang.org/cl/2608041
This commit is contained in:
Russ Cox 2010-10-20 15:35:37 -04:00
parent c2b91d4889
commit c026c91b5c

View File

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