mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 12:19:53 +00:00
FileCheck: Eliminate DOSish \r from input file.
It can pass two tests below on Win32. - Clang :: CodeGenCXX/dyncast.cpp - LLVM :: CodeGen/ARM/globals.ll git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119023 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ab4a7afe98
commit
9f6e03fa1e
@ -456,6 +456,11 @@ static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB) {
|
||||
|
||||
for (const char *Ptr = MB->getBufferStart(), *End = MB->getBufferEnd();
|
||||
Ptr != End; ++Ptr) {
|
||||
// Eliminate trailing dosish \r.
|
||||
if (Ptr <= End - 2 && Ptr[0] == '\r' && Ptr[1] == '\n') {
|
||||
continue;
|
||||
}
|
||||
|
||||
// If C is not a horizontal whitespace, skip it.
|
||||
if (*Ptr != ' ' && *Ptr != '\t') {
|
||||
NewFile.push_back(*Ptr);
|
||||
|
Loading…
Reference in New Issue
Block a user