Skip to content
Snippets Groups Projects
Commit 9ff9a429 authored by Daniel Jasper's avatar Daniel Jasper
Browse files

clang-format: Basic escaping when outputting XML.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250440 91177308-0d34-0410-b5e6-96231b3b80d8
parent 36aa12d2
No related branches found
No related tags found
No related merge requests found
......@@ -199,9 +199,11 @@ static bool fillRanges(MemoryBuffer *Code,
}
static void outputReplacementXML(StringRef Text) {
// FIXME: When we sort includes, we need to make sure the stream is correct
// utf-8.
size_t From = 0;
size_t Index;
while ((Index = Text.find_first_of("\n\r", From)) != StringRef::npos) {
while ((Index = Text.find_first_of("\n\r<&", From)) != StringRef::npos) {
llvm::outs() << Text.substr(From, Index - From);
switch (Text[Index]) {
case '\n':
......@@ -210,6 +212,12 @@ static void outputReplacementXML(StringRef Text) {
case '\r':
llvm::outs() << "&#13;";
break;
case '<':
llvm::outs() << "&lt;";
break;
case '&':
llvm::outs() << "&amp;";
break;
default:
llvm_unreachable("Unexpected character encountered!");
}
......
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