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

            Bug ID: 23561
           Summary: Assembler returns 1 for satisfied comparison instead
                    all ones.
           Product: libraries
           Version: 3.5
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: MC
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

As in summary. Assembler returns 1 for satisfied comparison instead all ones.
for example:

        .quad 1==1
        .quad 1<2
        .quad 2>1
        .quad 1==1

will be assembled to:

Contents of section .text:
 0000 01000000 00000000 01000000 00000000  ................
 0010 01000000 00000000 01000000 00000000  ................

instead:

Contents of section .text:
 0000 ffffffff ffffffff ffffffff ffffffff  ................
 0010 ffffffff ffffffff ffffffff ffffffff  ................

-- 
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