aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/FileUtilities.cpp
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-12-09 17:37:32 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-12-09 17:37:32 +0000
commit333ad3f2bf2941618f8e1563da022da011e615c0 (patch)
tree910abc14cfb6eca4ee6624eb52c92b2bbf92ab9f /lib/Support/FileUtilities.cpp
parent58fe86dc0ecb7efff01abe2b0024a6a53ebb2c81 (diff)
downloadexternal_llvm-333ad3f2bf2941618f8e1563da022da011e615c0.zip
external_llvm-333ad3f2bf2941618f8e1563da022da011e615c0.tar.gz
external_llvm-333ad3f2bf2941618f8e1563da022da011e615c0.tar.bz2
Fix whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121382 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/FileUtilities.cpp')
-rw-r--r--lib/Support/FileUtilities.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Support/FileUtilities.cpp b/lib/Support/FileUtilities.cpp
index 77de94d..c9e42e9 100644
--- a/lib/Support/FileUtilities.cpp
+++ b/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]);
}