summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorPete Cooper <peter_cooper@apple.com>2014-07-31 01:43:54 +0000
committerPete Cooper <peter_cooper@apple.com>2014-07-31 01:43:54 +0000
commit8a00302ba46e8b9ddbcbb04945b96fb151d43d7a (patch)
tree1061e6a2d7a7b5d104a3d49b87d98d6d385b12f3 /llvm/lib
parent95709e5604c949532f8c7d0ace3e56c6d4dffbd2 (diff)
downloadbcm5719-llvm-8a00302ba46e8b9ddbcbb04945b96fb151d43d7a.tar.gz
bcm5719-llvm-8a00302ba46e8b9ddbcbb04945b96fb151d43d7a.zip
Fix bit initializer which was one bit too long, but worked so long as we silently dropped the leading 0
llvm-svn: 214373
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/Mips/Mips32r6InstrFormats.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/Mips32r6InstrFormats.td b/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
index e4ec96a92f5..e9a4289ec24 100644
--- a/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
+++ b/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
@@ -403,7 +403,7 @@ class JMP_IDX_COMPACT_FM<bits<6> funct> : MipsR6Inst {
bits<32> Inst;
let Inst{31-26} = funct;
- let Inst{25-21} = 0b000000;
+ let Inst{25-21} = 0b00000;
let Inst{20-16} = rt;
let Inst{15-0} = offset;
}
OpenPOWER on IntegriCloud