From: Pete Cooper Date: Thu, 31 Jul 2014 01:43:51 +0000 (+0000) Subject: Fix bit initializer which was one bit too long, but worked so long as we silently... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=95709e5604c949532f8c7d0ace3e56c6d4dffbd2;p=platform%2Fupstream%2Fllvm.git Fix bit initializer which was one bit too long, but worked so long as we silently dropped the leading 0 llvm-svn: 214372 --- diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.td b/llvm/lib/Target/ARM/ARMInstrInfo.td index b2d6a68..f6cf69a 100644 --- a/llvm/lib/Target/ARM/ARMInstrInfo.td +++ b/llvm/lib/Target/ARM/ARMInstrInfo.td @@ -4117,7 +4117,7 @@ def UDIV : ADivA1I<0b011, (outs GPR:$Rd), (ins GPR:$Rn, GPR:$Rm), IIC_iDIV, // Misc. Arithmetic Instructions. // -def CLZ : AMiscA1I<0b000010110, 0b0001, (outs GPR:$Rd), (ins GPR:$Rm), +def CLZ : AMiscA1I<0b00010110, 0b0001, (outs GPR:$Rd), (ins GPR:$Rm), IIC_iUNAr, "clz", "\t$Rd, $Rm", [(set GPR:$Rd, (ctlz GPR:$Rm))]>, Requires<[IsARM, HasV5T]>, Sched<[WriteALU]>;