freebsd-dev/contrib/llvm/patches/patch-05-enable-armv6-clrex.diff

21 lines
693 B
Diff
Raw Normal View History

2014-12-01 13:07:49 +00:00
For now, enable the clrex instruction for armv6, until upstream
implements this properly.
Submitted by: rdivacky
Introduced here: http://svnweb.freebsd.org/changeset/base/275362
Index: lib/Target/ARM/ARMInstrInfo.td
===================================================================
--- lib/Target/ARM/ARMInstrInfo.td (revision 5)
+++ lib/Target/ARM/ARMInstrInfo.td (revision 6)
@@ -4640,7 +4640,7 @@ def STLEXD : AIstlex<0b01, (outs GPR:$Rd),
2014-12-01 13:07:49 +00:00
def CLREX : AXI<(outs), (ins), MiscFrm, NoItinerary, "clrex",
[(int_arm_clrex)]>,
- Requires<[IsARM, HasV7]> {
+ Requires<[IsARM, HasV6]> {
let Inst{31-0} = 0b11110101011111111111000000011111;
}