Fix whitespace.
authorMichael J. Spencer <bigcheesegs@gmail.com>
Thu, 9 Dec 2010 17:37:32 +0000 (17:37 +0000)
committerMichael J. Spencer <bigcheesegs@gmail.com>
Thu, 9 Dec 2010 17:37:32 +0000 (17:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121382 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/MemoryBuffer.h
lib/Support/FileUtilities.cpp
lib/Support/SourceMgr.cpp

index 6dc49d899fccef405da38beb25319807663c1856..e33483cb181aca0dc811f972594730eeca00b971 100644 (file)
@@ -72,7 +72,7 @@ public:
   static MemoryBuffer *getOpenFile(int FD, const char *Filename,
                                    error_code &ec,
                                    int64_t FileSize = -1);
-  
+
   /// getMemBuffer - Open the specified memory range as a MemoryBuffer.  Note
   /// that InputData must be null terminated.
   static MemoryBuffer *getMemBuffer(StringRef InputData,
index 77de94dfc9289731f2d50639c0061b6c53ae52dc..c9e42e9b38f13bae380d5dbacd366bed9c63a980 100644 (file)
@@ -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]);
     }
index f53169a8cfc944f86ea70a1eae74ccd125059d6d..1f62068376bb5282cf4e8e2aac7896e32108895b 100644 (file)
@@ -182,7 +182,7 @@ void SourceMgr::PrintMessage(SMLoc Loc, const Twine &Msg,
     DiagHandler(GetMessage(Loc, Msg, Type, ShowLine), DiagContext);
     return;
   }
-  
+
   raw_ostream &OS = errs();
 
   int CurBuf = FindBufferContainingLoc(Loc);