diff options
author | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2018-01-09 11:33:22 +0000 |
---|---|---|
committer | Francis Visoiu Mistrih <francisvm@yahoo.com> | 2018-01-09 11:33:22 +0000 |
commit | dbf2c48fc7ed8ce561b2096916b1f5fa539c61d0 (patch) | |
tree | c9a2697e78005f6272dcd164f445ca6925937759 /llvm/lib/CodeGen/MIRParser/MILexer.h | |
parent | 7868e740333984bd2e348d9e45c61f8ff57696a9 (diff) | |
download | bcm5719-llvm-dbf2c48fc7ed8ce561b2096916b1f5fa539c61d0.tar.gz bcm5719-llvm-dbf2c48fc7ed8ce561b2096916b1f5fa539c61d0.zip |
[MIR] Add support for the frame-destroy MachineInstr flag
We are printing / parsing the `frame-setup` MachineInstr flag but not
the `frame-destroy` one.
Differential Revision: https://reviews.llvm.org/D41509
llvm-svn: 322071
Diffstat (limited to 'llvm/lib/CodeGen/MIRParser/MILexer.h')
-rw-r--r-- | llvm/lib/CodeGen/MIRParser/MILexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MIRParser/MILexer.h b/llvm/lib/CodeGen/MIRParser/MILexer.h index 0204d549d5d..275f92985f7 100644 --- a/llvm/lib/CodeGen/MIRParser/MILexer.h +++ b/llvm/lib/CodeGen/MIRParser/MILexer.h @@ -63,6 +63,7 @@ struct MIToken { kw_renamable, kw_tied_def, kw_frame_setup, + kw_frame_destroy, kw_debug_location, kw_cfi_same_value, kw_cfi_offset, |