[LLVMbugs] [Bug 22883] Assertion `(InputFlag & ~0xffff) == 0 && "High bits already contain data"' failed.
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Fri Mar 13 05:52:26 PDT 2015
https://llvm.org/bugs/show_bug.cgi?id=22883
Daniel Sanders <daniel.sanders at imgtec.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |FIXED
--- Comment #2 from Daniel Sanders <daniel.sanders at imgtec.com> ---
Thanks. I've re-committed with a fix for this in 232165.
The main problem was simply that matching operands copied too much of the flag
word from their matched operand. As a result, the bits weren't empty (they
contained the matched operands' constraint id) and it triggered the assertion.
A second problem was that the operand number from a matching operand would be
also be used as the constraint id. Matching operands now obtain the constraint
id from the matched operand.
--
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/20150313/afc4aa36/attachment.html>
More information about the llvm-bugs
mailing list