[RISCV] Remove unused MCOperandPredicate from simm12_lsb00000. NFC

I don't think the use of isBareSymbolRef() was correct since we
don't have any relocations associated with this instruction type.
diff --git a/llvm/lib/Target/RISCV/RISCVInstrInfoZicbo.td b/llvm/lib/Target/RISCV/RISCVInstrInfoZicbo.td
index 56b68e3..56c8704 100644
--- a/llvm/lib/Target/RISCV/RISCVInstrInfoZicbo.td
+++ b/llvm/lib/Target/RISCV/RISCVInstrInfoZicbo.td
@@ -21,12 +21,6 @@
   let ParserMatchClass = SImmAsmOperand<12, "Lsb00000">;
   let EncoderMethod = "getImmOpValue";
   let DecoderMethod = "decodeSImmOperand<12>";
-  let MCOperandPredicate = [{
-    int64_t Imm;
-    if (MCOp.evaluateAsConstantImm(Imm))
-      return isShiftedInt<7, 5>(Imm);
-    return MCOp.isBareSymbolRef();
-  }];
   let OperandType = "OPERAND_SIMM12_LSB00000";
 }