Re: [Bug binutils/2454] New: incorrect syntax in avr disassembly

2006-04-07 Thread Nick Clifton
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

[Bug binutils/2454] New: incorrect syntax in avr disassembly

2006-03-13 Thread hochstein at algo dot informatik dot tu-darmstadt dot de
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