We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c2cbb6 commit 15e5839Copy full SHA for 15e5839
src/runtime/softfloat_arm.go
@@ -157,6 +157,17 @@ execute:
157
}
158
return 1
159
160
+ if i == 0xe08fb00b {
161
+ // add pc to r11
162
+ // might be part of a PIC floating point move
163
+ // (or might not, but again no harm done).
164
+ regs[11] += uint32(uintptr(unsafe.Pointer(pc))) + 8
165
+
166
+ if fptrace > 0 {
167
+ print("*** cpu R[11] += pc ", hex(regs[11]), "\n")
168
+ }
169
+ return 1
170
171
if i == 0xe08bb00d {
172
// add sp to r11.
173
// might be part of a large stack offset address
0 commit comments