diff options
author | dim <dim@FreeBSD.org> | 2014-12-01 12:59:21 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2014-12-01 12:59:21 +0000 |
commit | 329af525ff984c2e10e50f69e6bed085ab656b82 (patch) | |
tree | 2670e25f17459c7d78eb1f8ea840aab54bcace32 /contrib/llvm/lib/Target | |
parent | 4078c6aadd450aad0c22987b84bd9d66262efbb4 (diff) | |
download | FreeBSD-src-329af525ff984c2e10e50f69e6bed085ab656b82.zip FreeBSD-src-329af525ff984c2e10e50f69e6bed085ab656b82.tar.gz |
For now, enable the clrex instruction for armv6, until upstream
implements this properly.
Submitted by: andrew
Diffstat (limited to 'contrib/llvm/lib/Target')
-rw-r--r-- | contrib/llvm/lib/Target/ARM/ARMInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td b/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td index a02d997..619be79 100644 --- a/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td +++ b/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td @@ -4615,7 +4615,7 @@ def STLEXD : AIstlex<0b01, (outs GPR:$Rd), def CLREX : AXI<(outs), (ins), MiscFrm, NoItinerary, "clrex", [(int_arm_clrex)]>, - Requires<[IsARM, HasV7]> { + Requires<[IsARM, HasV6]> { let Inst{31-0} = 0b11110101011111111111000000011111; } |