http://llvm.org/bugs/show_bug.cgi?id=10569

           Summary: [ARM disasm] extra newline after sxtab16, uxtab16
           Product: new-bugs
           Version: trunk
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: new bugs
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected]


An extra newline is printed after the instructions sxtab16 and uxtab16:

------------------------------------------------------------
$ echo '0x73 0x98 0x80 0xe6 0 0 0 0' |llvm-mc -arch=arm -disassemble
        sxtab16 r9, r0, r3, ror #16

        andeq   r0, r0, r0
------------------------------------------------------------

Expected result: No blank line between the sxtab16 line and the andeq line.

Same for uxtab:

------------------------------------------------------------
$ echo '0x73 0x98 0xc1 0xe6 0 0 0 0' |llvm-mc -arch=arm -disassemble
        uxtab16 r9, r1, r3, ror #16

        andeq   r0, r0, r0
------------------------------------------------------------

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to