mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
Canonicalize line endings to Linux style also when the --strict-whitespace flag is in use. This flag is supposed to affect horizontal whitespaces only.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174541 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -587,9 +587,13 @@ struct CheckString {
|
||||
: Pat(P), Loc(L), IsCheckNext(isCheckNext) {}
|
||||
};
|
||||
|
||||
/// CanonicalizeInputFile - Remove duplicate horizontal space from the specified
|
||||
/// memory buffer, free it, and return a new one.
|
||||
static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB) {
|
||||
/// Canonicalize whitespaces in the input file. Line endings are replaced
|
||||
/// with UNIX-style '\n'.
|
||||
///
|
||||
/// \param PreserveHorizontal Don't squash consecutive horizontal whitespace
|
||||
/// characters to a single space.
|
||||
static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB,
|
||||
bool PreserveHorizontal) {
|
||||
SmallString<128> NewFile;
|
||||
NewFile.reserve(MB->getBufferSize());
|
||||
|
||||
@ -600,8 +604,9 @@ static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// If current char is not a horizontal whitespace, dump it to output as is.
|
||||
if (*Ptr != ' ' && *Ptr != '\t') {
|
||||
// If current char is not a horizontal whitespace or if horizontal
|
||||
// whitespace canonicalization is disabled, dump it to output as is.
|
||||
if (PreserveHorizontal || (*Ptr != ' ' && *Ptr != '\t')) {
|
||||
NewFile.push_back(*Ptr);
|
||||
continue;
|
||||
}
|
||||
@ -637,9 +642,8 @@ static bool ReadCheckFile(SourceMgr &SM,
|
||||
MemoryBuffer *F = File.take();
|
||||
|
||||
// If we want to canonicalize whitespace, strip excess whitespace from the
|
||||
// buffer containing the CHECK lines.
|
||||
if (!NoCanonicalizeWhiteSpace)
|
||||
F = CanonicalizeInputFile(F);
|
||||
// buffer containing the CHECK lines. Remove DOS style line endings.
|
||||
F = CanonicalizeInputFile(F, NoCanonicalizeWhiteSpace);
|
||||
|
||||
SM.AddNewSourceBuffer(F, SMLoc());
|
||||
|
||||
@ -807,8 +811,8 @@ int main(int argc, char **argv) {
|
||||
}
|
||||
|
||||
// Remove duplicate spaces in the input file if requested.
|
||||
if (!NoCanonicalizeWhiteSpace)
|
||||
F = CanonicalizeInputFile(F);
|
||||
// Remove DOS style line endings.
|
||||
F = CanonicalizeInputFile(F, NoCanonicalizeWhiteSpace);
|
||||
|
||||
SM.AddNewSourceBuffer(F, SMLoc());
|
||||
|
||||
|
Reference in New Issue
Block a user