diff options
author | Alex Lorenz <arphaman@gmail.com> | 2015-08-05 22:26:15 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2015-08-05 22:26:15 +0000 |
commit | 5672a893e536a3865d9592cc2f21e8e608af52ac (patch) | |
tree | c6b3381164634e332c8c0ddd43c4bd89e33fc859 /llvm/lib/CodeGen/MIRParser/MILexer.h | |
parent | 2b34fd932069e068ea55494706b8b2012f3270d0 (diff) | |
download | bcm5719-llvm-5672a893e536a3865d9592cc2f21e8e608af52ac.tar.gz bcm5719-llvm-5672a893e536a3865d9592cc2f21e8e608af52ac.zip |
MIR Serialization: Serialize the machine operand's offset.
This commit serializes the offset for the following operands: target index,
global address, external symbol, constant pool index, and block address.
llvm-svn: 244157
Diffstat (limited to 'llvm/lib/CodeGen/MIRParser/MILexer.h')
-rw-r--r-- | llvm/lib/CodeGen/MIRParser/MILexer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MIRParser/MILexer.h b/llvm/lib/CodeGen/MIRParser/MILexer.h index 9896f7bcad7..064f68e2d5d 100644 --- a/llvm/lib/CodeGen/MIRParser/MILexer.h +++ b/llvm/lib/CodeGen/MIRParser/MILexer.h @@ -40,6 +40,8 @@ struct MIToken { exclaim, lparen, rparen, + plus, + minus, // Keywords kw_implicit, |