Commit c026c91b authored by Russ Cox's avatar Russ Cox

arm: fix typo in softfloat

R=kaib
CC=golang-dev
https://golang.org/cl/2608041
parent c2b91d48
...@@ -449,7 +449,7 @@ loadstore(uint32 *pc, uint32 *regs) ...@@ -449,7 +449,7 @@ loadstore(uint32 *pc, uint32 *regs)
isload = i>>20&1; isload = i>>20&1;
p = i>>24&1; p = i>>24&1;
ud = i>>23&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; wb = i>>21&1;
reg = i>>16 &0xf; reg = i>>16 &0xf;
freg = i>>12 &0x7; freg = i>>12 &0x7;
......
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