summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorPete Cooper <peter_cooper@apple.com>2014-07-31 01:43:51 +0000
committerPete Cooper <peter_cooper@apple.com>2014-07-31 01:43:51 +0000
commit95709e5604c949532f8c7d0ace3e56c6d4dffbd2 (patch)
treec70a372c496c2b0473127609cbba3d1c0315251b /llvm/lib
parent6a577a819f5b942e3a7f6212c2f0059e9fef8ad3 (diff)
downloadbcm5719-llvm-95709e5604c949532f8c7d0ace3e56c6d4dffbd2.tar.gz
bcm5719-llvm-95709e5604c949532f8c7d0ace3e56c6d4dffbd2.zip
Fix bit initializer which was one bit too long, but worked so long as we silently dropped the leading 0
llvm-svn: 214372
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/ARM/ARMInstrInfo.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.td b/llvm/lib/Target/ARM/ARMInstrInfo.td
index b2d6a68b960..f6cf69a2fbb 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]>;
OpenPOWER on IntegriCloud