Hi,

I tried to disassemble an executable file using objdump and when i looked into 
the output file, I got this

362c: 9b 5b 04 00     rla 4(r11) ;
3630: 00 00 

3632: 9b 6b 06 00     rlc 6(r11) ;

3636: 02 00 

I think the result assembly is wrong, it should be

362c: 9b 5b 04 00     add 4(r11),    0(r11) ;

3630: 00 00 

3632: 9b 6b 06 00     addc 6(r11),    2(r11) ;

3636: 02 00 

Is this a bug?

Regards,

Thanh Nga

Reply via email to