diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-09 17:37:32 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-12-09 17:37:32 +0000 |
commit | db97c0b52087459ff69ee440e1a819ae1f3f8eb5 (patch) | |
tree | 3d2637c631081b1107c9cd58e71efb82ee5c8e49 /llvm/lib/Support/FileUtilities.cpp | |
parent | 751e9aafa9d51c161378ae0a3a5e3502589145b9 (diff) | |
download | bcm5719-llvm-db97c0b52087459ff69ee440e1a819ae1f3f8eb5.tar.gz bcm5719-llvm-db97c0b52087459ff69ee440e1a819ae1f3f8eb5.zip |
Fix whitespace.
llvm-svn: 121382
Diffstat (limited to 'llvm/lib/Support/FileUtilities.cpp')
-rw-r--r-- | llvm/lib/Support/FileUtilities.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Support/FileUtilities.cpp b/llvm/lib/Support/FileUtilities.cpp index 77de94dfc92..c9e42e9b38f 100644 --- a/llvm/lib/Support/FileUtilities.cpp +++ b/llvm/lib/Support/FileUtilities.cpp @@ -109,17 +109,17 @@ static bool CompareNumbers(const char *&F1P, const char *&F2P, SmallString<200> StrTmp(F1P, EndOfNumber(F1NumEnd)+1); // Strange exponential notation! StrTmp[static_cast<unsigned>(F1NumEnd-F1P)] = 'e'; - + V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); F1NumEnd = F1P + (F1NumEnd-&StrTmp[0]); } - + if (*F2NumEnd == 'D' || *F2NumEnd == 'd') { // Copy string into tmp buffer to replace the 'D' with an 'e'. SmallString<200> StrTmp(F2P, EndOfNumber(F2NumEnd)+1); // Strange exponential notation! StrTmp[static_cast<unsigned>(F2NumEnd-F2P)] = 'e'; - + V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd)); F2NumEnd = F2P + (F2NumEnd-&StrTmp[0]); } |