[RISCV] Add missing hunk from r316188

r316188 didn't set guessInstructionProperties=1 as it should have done.

llvm-svn: 316189
This commit is contained in:
Alex Bradbury 2017-10-19 21:43:29 +00:00
parent 8971842f43
commit c6c4e8bd5a
1 changed files with 3 additions and 1 deletions

View File

@ -40,7 +40,9 @@ def : ProcessorModel<"generic-rv64", NoSchedModel, [Feature64Bit]>;
//===----------------------------------------------------------------------===//
def RISCVInstrInfo : InstrInfo {
let guessInstructionProperties = 0;
// TODO: disable guessInstructionProperties when
// https://reviews.llvm.org/D37065 lands.
let guessInstructionProperties = 1;
}
def RISCVAsmParser : AsmParser {