[LLVMbugs] [Bug 12760] New: ARM: wrong pattern for SMMLS instruction
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Mon May 7 19:14:48 PDT 2012
http://llvm.org/bugs/show_bug.cgi?id=12760
Bug #: 12760
Summary: ARM: wrong pattern for SMMLS instruction
Product: libraries
Version: trunk
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P
Component: Backend: ARM
AssignedTo: unassignedbugs at nondot.org
ReportedBy: mans at mansr.com
CC: llvmbugs at cs.uiuc.edu
Classification: Unclassified
The SMMLS instruction pattern is wrong, matching code of the form
a - ((b * c) >> 32)
while the instruction actually performs the operation
((a << 32) - b * c) >> 32
This means incorrect code is generated in some cases.
--
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
More information about the llvm-bugs
mailing list