svn commit: r275362 - projects/clang350-import/contrib/llvm/lib/Target/ARM

Dimitry Andric dim at FreeBSD.org
Mon Dec 1 12:59:21 UTC 2014


Author: dim
Date: Mon Dec  1 12:59:21 2014
New Revision: 275362
URL: https://svnweb.freebsd.org/changeset/base/275362

Log:
  For now, enable the clrex instruction for armv6, until upstream
  implements this properly.
  
  Submitted by:	andrew

Modified:
  projects/clang350-import/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td

Modified: projects/clang350-import/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td
==============================================================================
--- projects/clang350-import/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td	Mon Dec  1 12:59:16 2014	(r275361)
+++ projects/clang350-import/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td	Mon Dec  1 12:59:21 2014	(r275362)
@@ -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;
 }
 


More information about the svn-src-projects mailing list