diff options
| author | Dylan McKay <dylanmckay34@gmail.com> | 2016-10-08 00:55:46 +0000 |
|---|---|---|
| committer | Dylan McKay <dylanmckay34@gmail.com> | 2016-10-08 00:55:46 +0000 |
| commit | ddb7a59fe92533e92006f7bdde2d3a4e4abb2c3a (patch) | |
| tree | 4ee8d340cfd4d5422a934b685119ead8865b1d96 /llvm/lib | |
| parent | 24d02ee1411131bc01c918ffe934e1b1a23f6a66 (diff) | |
| download | bcm5719-llvm-ddb7a59fe92533e92006f7bdde2d3a4e4abb2c3a.tar.gz bcm5719-llvm-ddb7a59fe92533e92006f7bdde2d3a4e4abb2c3a.zip | |
[AVR] Add the 'SoftFail' field to all instruction formats
This will be used in the future for disassembly.
llvm-svn: 283630
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/AVR/AVRInstrFormats.td | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/AVR/AVRInstrFormats.td b/llvm/lib/Target/AVR/AVRInstrFormats.td index c10023dd2c0..ce5e606f978 100644 --- a/llvm/lib/Target/AVR/AVRInstrFormats.td +++ b/llvm/lib/Target/AVR/AVRInstrFormats.td @@ -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. |

