summaryrefslogtreecommitdiffstats
path: root/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp')
-rw-r--r--lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp b/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
index d295cbb4e08..a41c2098c1e 100644
--- a/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
+++ b/lldb/utils/TableGen/LLDBPropertyDefEmitter.cpp
@@ -82,7 +82,7 @@ static void emitProperty(Record *Property, raw_ostream &OS) {
if (hasDefaultStringValue) {
if (auto D = Property->getValue("DefaultStringValue")) {
OS << "\"";
- llvm::printEscapedString(D->getValue()->getAsUnquotedString(), OS);
+ OS << D->getValue()->getAsUnquotedString();
OS << "\"";
} else {
OS << "\"\"";
@@ -102,7 +102,7 @@ static void emitProperty(Record *Property, raw_ostream &OS) {
// Emit the property description.
if (auto D = Property->getValue("Description")) {
OS << "\"";
- llvm::printEscapedString(D->getValue()->getAsUnquotedString(), OS);
+ OS << D->getValue()->getAsUnquotedString();
OS << "\"";
} else {
OS << "\"\"";
OpenPOWER on IntegriCloud