diff options
author | Michael Berg <michael_c_berg@apple.com> | 2018-09-11 21:35:32 +0000 |
---|---|---|
committer | Michael Berg <michael_c_berg@apple.com> | 2018-09-11 21:35:32 +0000 |
commit | c72a7259bee5779f8627bbf464f53c0c993274e0 (patch) | |
tree | 731d1d510cff1301c6f8f3e82132a435fe99c39f /llvm/lib/CodeGen/MIRParser/MILexer.h | |
parent | f0d7daa972a136d4e1dd1869d4908f3eef331d10 (diff) | |
download | bcm5719-llvm-c72a7259bee5779f8627bbf464f53c0c993274e0.tar.gz bcm5719-llvm-c72a7259bee5779f8627bbf464f53c0c993274e0.zip |
add IR flags to MI
Summary: Initial support for nsw, nuw and exact flags in MI
Reviewers: spatel, hfinkel, wristow
Reviewed By: spatel
Subscribers: nlopes
Differential Revision: https://reviews.llvm.org/D51738
llvm-svn: 341996
Diffstat (limited to 'llvm/lib/CodeGen/MIRParser/MILexer.h')
-rw-r--r-- | llvm/lib/CodeGen/MIRParser/MILexer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MIRParser/MILexer.h b/llvm/lib/CodeGen/MIRParser/MILexer.h index d2dc5511b25..dffa4f74544 100644 --- a/llvm/lib/CodeGen/MIRParser/MILexer.h +++ b/llvm/lib/CodeGen/MIRParser/MILexer.h @@ -71,6 +71,9 @@ struct MIToken { kw_contract, kw_afn, kw_reassoc, + kw_nuw, + kw_nsw, + kw_exact, kw_debug_location, kw_cfi_same_value, kw_cfi_offset, |