From 34cd4a484e532cc463fd5a4bf59b88d13c5467c1 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Mon, 5 May 2008 18:30:58 +0000 Subject: Fix more -Wshorten-64-to-32 warnings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50659 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/FileUtilities.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/Support/FileUtilities.cpp') diff --git a/lib/Support/FileUtilities.cpp b/lib/Support/FileUtilities.cpp index 3340e8b2eb..21080b6439 100644 --- a/lib/Support/FileUtilities.cpp +++ b/lib/Support/FileUtilities.cpp @@ -98,7 +98,8 @@ static bool CompareNumbers(const char *&F1P, const char *&F2P, if (*F1NumEnd == 'D' || *F1NumEnd == 'd') { // Copy string into tmp buffer to replace the 'D' with an 'e'. SmallString<200> StrTmp(F1P, EndOfNumber(F1NumEnd)+1); - StrTmp[F1NumEnd-F1P] = 'e'; // Strange exponential notation! + // Strange exponential notation! + StrTmp[static_cast(F1NumEnd-F1P)] = 'e'; V1 = strtod(&StrTmp[0], const_cast(&F1NumEnd)); F1NumEnd = F1P + (F1NumEnd-&StrTmp[0]); @@ -107,7 +108,8 @@ static bool CompareNumbers(const char *&F1P, const char *&F2P, if (*F2NumEnd == 'D' || *F2NumEnd == 'd') { // Copy string into tmp buffer to replace the 'D' with an 'e'. SmallString<200> StrTmp(F2P, EndOfNumber(F2NumEnd)+1); - StrTmp[F2NumEnd-F2P] = 'e'; // Strange exponential notation! + // Strange exponential notation! + StrTmp[static_cast(F2NumEnd-F2P)] = 'e'; V2 = strtod(&StrTmp[0], const_cast(&F2NumEnd)); F2NumEnd = F2P + (F2NumEnd-&StrTmp[0]); -- cgit v1.2.3-18-g5258