[llvm-bugs] [Bug 27916] New: [x86] add operand comments for intel syntax output

via llvm-bugs llvm-bugs at lists.llvm.org
Fri May 27 13:36:43 PDT 2016


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: unassignedbugs at nondot.org
          Reporter: spatel+llvm at rotateright.com
                CC: llvm-bugs at lists.llvm.org
    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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20160527/8c84ab7a/attachment.html>


More information about the llvm-bugs mailing list