diff options
| author | Pete Cooper <peter_cooper@apple.com> | 2014-07-31 01:43:51 +0000 |
|---|---|---|
| committer | Pete Cooper <peter_cooper@apple.com> | 2014-07-31 01:43:51 +0000 |
| commit | 95709e5604c949532f8c7d0ace3e56c6d4dffbd2 (patch) | |
| tree | c70a372c496c2b0473127609cbba3d1c0315251b /llvm/lib | |
| parent | 6a577a819f5b942e3a7f6212c2f0059e9fef8ad3 (diff) | |
| download | bcm5719-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.td | 2 |
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]>; |

