From b4d70a0c2a554151d01c15f0c0086c6b69afa09e Mon Sep 17 00:00:00 2001 From: Pete Cooper Date: Thu, 31 Jul 2014 01:43:54 +0000 Subject: [PATCH] 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 --- lib/Target/Mips/Mips32r6InstrFormats.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.34.1