Revert: r215698 - Current implementation of c.cond.fmt instructions only accept defau...
[oota-llvm.git] / lib / Target / Mips / MipsInstrFormats.td
index 1c1915a1ba884bab3756fca3a547132003c5f31c..6a01ae560f3adcdde07a959a9d2755116c4a4c8d 100644 (file)
@@ -768,7 +768,6 @@ class CEQS_FM<bits<5> fmt> : StdArch {
   bits<5> fs;
   bits<5> ft;
   bits<4> cond;
-  bits<3> cc;
 
   bits<32> Inst;
 
@@ -776,7 +775,7 @@ class CEQS_FM<bits<5> fmt> : StdArch {
   let Inst{25-21} = fmt;
   let Inst{20-16} = ft;
   let Inst{15-11} = fs;
-  let Inst{10-8} = cc;
+  let Inst{10-8} = 0; // cc
   let Inst{7-4} = 0x3;
   let Inst{3-0} = cond;
 }