Fix bit initializer which was one bit too long, but worked so long as we silently...
[oota-llvm.git] / lib / Target / Mips / Mips32r6InstrFormats.td
index e4ec96a92f5bfb01bdf204db26b1244b13f9599b..e9a4289ec2471c78208734cd9432536ea0e10b06 100644 (file)
@@ -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;
 }