diff options
author | Alex Lorenz <arphaman@gmail.com> | 2015-07-31 20:49:21 +0000 |
---|---|---|
committer | Alex Lorenz <arphaman@gmail.com> | 2015-07-31 20:49:21 +0000 |
commit | ad156fb6af9f58c35357405b0ecd83a60185ed84 (patch) | |
tree | 0ae0c1cd07ced2376fdcd74321003d1987abe626 /llvm/lib/CodeGen/MIRParser/MILexer.h | |
parent | 375fa1381d5bd9c02895049bcc3390f5df29f55e (diff) | |
download | bcm5719-llvm-ad156fb6af9f58c35357405b0ecd83a60185ed84.tar.gz bcm5719-llvm-ad156fb6af9f58c35357405b0ecd83a60185ed84.zip |
MIR Serialization: Serialize the floating point immediate machine operands.
Reviewers: Duncan P. N. Exon Smith
llvm-svn: 243780
Diffstat (limited to 'llvm/lib/CodeGen/MIRParser/MILexer.h')
-rw-r--r-- | llvm/lib/CodeGen/MIRParser/MILexer.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MIRParser/MILexer.h b/llvm/lib/CodeGen/MIRParser/MILexer.h index 31c3575bba9..2b06f13c9db 100644 --- a/llvm/lib/CodeGen/MIRParser/MILexer.h +++ b/llvm/lib/CodeGen/MIRParser/MILexer.h @@ -54,6 +54,12 @@ struct MIToken { kw_cfi_def_cfa, kw_blockaddress, kw_target_index, + kw_half, + kw_float, + kw_double, + kw_x86_fp80, + kw_fp128, + kw_ppc_fp128, // Identifier tokens Identifier, @@ -69,6 +75,7 @@ struct MIToken { // Other tokens IntegerLiteral, + FloatingPointLiteral, VirtualRegister, ConstantPoolItem, JumpTableIndex, |