From dc87e8eb52104aff661aa5ea6e636f9e43d8d468 Mon Sep 17 00:00:00 2001 From: Dylan McKay Date: Sat, 8 Oct 2016 00:55:46 +0000 Subject: [PATCH] [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 --- lib/Target/AVR/AVRInstrFormats.td | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Target/AVR/AVRInstrFormats.td b/lib/Target/AVR/AVRInstrFormats.td index c10023dd2c0..ce5e606f978 100644 --- a/lib/Target/AVR/AVRInstrFormats.td +++ b/lib/Target/AVR/AVRInstrFormats.td @@ -20,6 +20,8 @@ class AVRInst pattern> : Instruction dag InOperandList = ins; let AsmString = asmstr; let Pattern = pattern; + + field bits<32> SoftFail = 0; } /// A 16-bit AVR instruction.