Skip to content
Snippets Groups Projects
Commit 5c461df8 authored by Lubos Lunak's avatar Lubos Lunak
Browse files

strip UTF-8 BOM in -frewrite-includes (PR#15664)


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@195877 91177308-0d34-0410-b5e6-96231b3b80d8
parent 81d0481d
No related branches found
No related tags found
No related merge requests found
......@@ -367,6 +367,11 @@ bool InclusionRewriter::Process(FileID FileId,
unsigned NextToWrite = 0;
int Line = 1; // The current input file line number.
// Ignore UTF-8 BOM, otherwise it'd end up somewhere else than the start
// of the resulting file.
if (FromFile.getBuffer().startswith("\xEF\xBB\xBF"))
NextToWrite = 3;
Token RawToken;
RawLex.LexFromRawLexer(RawToken);
......
// This file starts with UTF-8 BOM marker.
// RUN: %clang -E -frewrite-includes -I %S/Inputs %s -o - | %clang -fsyntax-only -Xclang -verify -x c -
// expected-no-diagnostics
#include "rewrite-includes-bom.h"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment