https://llvm.org/bugs/show_bug.cgi?id=27916

            Bug ID: 27916
           Summary: [x86] add operand comments for intel syntax output
           Product: libraries
           Version: trunk
          Hardware: PC
                OS: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: MC
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

Follow-up from D20385:
http://reviews.llvm.org/D20385

$ echo 'mov rax, 389389' | ./llvm-mc -assemble -x86-asm-syntax=intel
-output-asm-variant=0

    movq    $389389, %rax           ## imm = 0x5F10D

                                        ^^^^^^^^^^^^^^^^

-------------------------------------------------------------------------------

We add niceties like hex values and shuffle info to ATT syntax. But Intel
syntax gets no operand comments:

$ echo 'mov rax, 389389' | ./llvm-mc -assemble -x86-asm-syntax=intel
-output-asm-variant=1

    mov    rax, 389389

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to