r316188 didn't set guessInstructionProperties=1 as it should have done.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@316189
91177308-0d34-0410-b5e6-
96231b3b80d8
//===----------------------------------------------------------------------===//
def RISCVInstrInfo : InstrInfo {
- let guessInstructionProperties = 0;
+ // TODO: disable guessInstructionProperties when
+ // https://reviews.llvm.org/D37065 lands.
+ let guessInstructionProperties = 1;
}
def RISCVAsmParser : AsmParser {