Fix bit initializer which was one bit too long, but worked so long as we silently...
authorPete Cooper <peter_cooper@apple.com>
Thu, 31 Jul 2014 01:43:54 +0000 (01:43 +0000)
committerPete Cooper <peter_cooper@apple.com>
Thu, 31 Jul 2014 01:43:54 +0000 (01:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214373 91177308-0d34-0410-b5e6-96231b3b80d8

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;
 }