Hi hochstein,
The disassembly for call and jmp looks like this:
43a: 0e 94 7e 0e call0x1cfc <__divmodhi4>
This causes problems since the "" part is not correct assembler
syntax. It should read like this:
43a: 0e 94 7e 0e call0x1cfc ; <__divmodhi4>
Do
The disassembly for call and jmp looks like this:
43a: 0e 94 7e 0e call0x1cfc <__divmodhi4>
This causes problems since the "" part is not correct assembler
syntax. It should read like this:
43a: 0e 94 7e 0e call0x1cfc ; <__divmodhi4>
The following patch so