diff options
author | Alex Lorenz <arphaman@gmail.com> | 2015-08-21 21:54:12 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2015-08-21 21:54:12 +0000 |
commit | c1136ef3b843a6b0ced314f29e85aa88ca0cf7fd (patch) | |
tree | cba603cbb279cc5d4b19c8bc277a0ea14d3e5692 /llvm/lib/CodeGen/MIRParser/MILexer.h | |
parent | 366dd9fd2b0b39d6649de0ff29f9097c14a1d616 (diff) | |
download | bcm5719-llvm-c1136ef3b843a6b0ced314f29e85aa88ca0cf7fd.tar.gz bcm5719-llvm-c1136ef3b843a6b0ced314f29e85aa88ca0cf7fd.zip |
MIR Serialization: Serialize the pointer IR expression values in the machine
memory operands.
llvm-svn: 245745
Diffstat (limited to 'llvm/lib/CodeGen/MIRParser/MILexer.h')
-rw-r--r-- | llvm/lib/CodeGen/MIRParser/MILexer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MIRParser/MILexer.h b/llvm/lib/CodeGen/MIRParser/MILexer.h index 35c526be812..ff54aa3554d 100644 --- a/llvm/lib/CodeGen/MIRParser/MILexer.h +++ b/llvm/lib/CodeGen/MIRParser/MILexer.h @@ -115,7 +115,8 @@ struct MIToken { NamedIRBlock, IRBlock, NamedIRValue, - IRValue + IRValue, + QuotedIRValue // `<constant value>` }; private: |