aboutsummaryrefslogtreecommitdiff
path: root/lib/Basic/Diagnostic.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-11-19 06:04:55 +0000
committerChris Lattner <sabre@nondot.org>2008-11-19 06:04:55 +0000
commit73d2a1b05bb04ab0136af374ddaa5d4602d4c939 (patch)
treef6790feb7751573760004a62ed847e8c1d134687 /lib/Basic/Diagnostic.cpp
parentd064191a2d2932129b636aab66da12ff4e281840 (diff)
implement a transparent optimization with the diagnostics stuff:
const char*'s are now not converted to std::strings when the diagnostic is formed, we just hold onto their pointer and format as needed. This commit makes DiagnosticClient::FormatDiagnostic even more of a mess, I'll fix it in the next commit. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59593 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/Diagnostic.cpp')
-rw-r--r--lib/Basic/Diagnostic.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Basic/Diagnostic.cpp b/lib/Basic/Diagnostic.cpp
index a202a55f26..35d454b1b9 100644
--- a/lib/Basic/Diagnostic.cpp
+++ b/lib/Basic/Diagnostic.cpp
@@ -255,7 +255,8 @@ std::string DiagnosticClient::FormatDiagnostic(const DiagnosticInfo &Info) {
if (Msg[i] == '%' && isdigit(Msg[i + 1])) {
unsigned StrNo = Msg[i + 1] - '0';
Msg = std::string(Msg.begin(), Msg.begin() + i) +
- Info.getArgStr(StrNo) +
+ (Info.getArgKind(StrNo) == DiagnosticInfo::ak_std_string ?
+ Info.getArgStdStr(StrNo) : std::string(Info.getArgCStr(StrNo))) +
std::string(Msg.begin() + i + 2, Msg.end());
}
}