aboutsummaryrefslogtreecommitdiff
path: root/lib/Lex/Preprocessor.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-11-18 04:56:44 +0000
committerChris Lattner <sabre@nondot.org>2008-11-18 04:56:44 +0000
commit2383b7f6aea2cb2bf2b5bfc0ec730f9354fecbbf (patch)
tree13bdae5f244e4365dc659a6d5c94e84e910b626f /lib/Lex/Preprocessor.cpp
parentc5c8d7d57dbfb2ecb7c7db51711e3b198e379d6a (diff)
Change the diagnostics interface to take an array of pointers to
strings instead of array of strings. This reduces string copying in some not-very-important cases, but paves the way for future improvements. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59494 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r--lib/Lex/Preprocessor.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp
index c65b546209..dc4dd877b6 100644
--- a/lib/Lex/Preprocessor.cpp
+++ b/lib/Lex/Preprocessor.cpp
@@ -124,14 +124,16 @@ void Preprocessor::Diag(SourceLocation Loc, unsigned DiagID) {
void Preprocessor::Diag(SourceLocation Loc, unsigned DiagID,
const std::string &Msg) {
- Diags.Report(getFullLoc(Loc), DiagID, &Msg, 1);
+ const std::string *Strs[] = { &Msg };
+ Diags.Report(getFullLoc(Loc), DiagID, Strs, 1);
}
void Preprocessor::Diag(SourceLocation Loc, unsigned DiagID,
const std::string &Msg,
const SourceRange &R1, const SourceRange &R2) {
+ const std::string *Strs[] = { &Msg };
SourceRange R[] = {R1, R2};
- Diags.Report(getFullLoc(Loc), DiagID, &Msg, 1, R, 2);
+ Diags.Report(getFullLoc(Loc), DiagID, Strs, 1, R, 2);
}