[AVR] Add the 'SoftFail' field to all instruction formats

This will be used in the future for disassembly.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@283630 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dylan McKay 2016-10-08 00:55:46 +00:00
parent db1d168abb
commit dc87e8eb52

View File

@ -20,6 +20,8 @@ class AVRInst<dag outs, dag ins, string asmstr, list<dag> pattern> : Instruction
dag InOperandList = ins;
let AsmString = asmstr;
let Pattern = pattern;
field bits<32> SoftFail = 0;
}
/// A 16-bit AVR instruction.