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

            Bug ID: 27653
           Summary: BOUND instruction has swapped arguments
           Product: tools
           Version: 3.8
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: llvm-as
          Assignee: unassignedb...@nondot.org
          Reporter: r.ma...@assembler.cz
                CC: llvm-bugs@lists.llvm.org
    Classification: Unclassified

//./clang-3.8 -c a.S -m32 -save-temps

//a.S is this:
.section .text
.global _start
_start:

//GCC accept this
//bound %eax, (%ecx)

//CLANG wants this
bound (%ecx), %eax

//both generate:
//62 01                    bound  %eax,(%ecx)

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

Reply via email to