mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-02 16:36:40 +00:00
Fix whitespace.
llvm-svn: 121382
This commit is contained in:
parent
c4c4e1133d
commit
95b8bf9f67
@ -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,
|
||||
|
@ -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]);
|
||||
}
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user