From: Pete Cooper Date: Thu, 31 Jul 2014 01:43:54 +0000 (+0000) Subject: Fix bit initializer which was one bit too long, but worked so long as we silently... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b4d70a0c2a554151d01c15f0c0086c6b69afa09e;p=oota-llvm.git Fix bit initializer which was one bit too long, but worked so long as we silently dropped the leading 0 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214373 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Mips/Mips32r6InstrFormats.td b/lib/Target/Mips/Mips32r6InstrFormats.td index e4ec96a92f5..e9a4289ec24 100644 --- a/lib/Target/Mips/Mips32r6InstrFormats.td +++ b/lib/Target/Mips/Mips32r6InstrFormats.td @@ -403,7 +403,7 @@ class JMP_IDX_COMPACT_FM 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; }