diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-08-05 11:59:45 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-08-05 11:59:45 +0000 |
commit | 2b8c774ce75e3b8e168889a718f8c90776ba589a (patch) | |
tree | 126ab61c7f1eb11374704aec155b59e75325b049 /llvm/lib/AsmParser | |
parent | dd14b18def33c5bbdb8a8781edfb0a0ef00d8ffd (diff) | |
download | bcm5719-llvm-2b8c774ce75e3b8e168889a718f8c90776ba589a.tar.gz bcm5719-llvm-2b8c774ce75e3b8e168889a718f8c90776ba589a.zip |
Reformat.
llvm-svn: 277812
Diffstat (limited to 'llvm/lib/AsmParser')
-rw-r--r-- | llvm/lib/AsmParser/LLLexer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/LLLexer.cpp b/llvm/lib/AsmParser/LLLexer.cpp index 507e7e76ecd..980ae1ec3d3 100644 --- a/llvm/lib/AsmParser/LLLexer.cpp +++ b/llvm/lib/AsmParser/LLLexer.cpp @@ -871,7 +871,7 @@ lltok::Kind LLLexer::Lex0x() { // HexFPConstant - Floating point constant represented in IEEE format as a // hexadecimal number for when exponential notation is not precise enough. // Half, Float, and double only. - APFloatVal = APFloat(BitsToDouble(HexIntToVal(TokStart+2, CurPtr))); + APFloatVal = APFloat(BitsToDouble(HexIntToVal(TokStart + 2, CurPtr))); return lltok::APFloat; } |