[LLVMbugs] [Bug 23561] New: Assembler returns 1 for satisfied comparison instead all ones.
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Mon May 18 11:01:48 PDT 2015
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: unassignedbugs at nondot.org
Reporter: matszpk at interia.pl
CC: llvmbugs at cs.uiuc.edu
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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20150518/fab7442e/attachment.html>
More information about the llvm-bugs
mailing list