diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-19 06:46:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-19 06:46:35 +0000 |
commit | 29a2a191f270aba54c45fc9e1df8347a34348c77 (patch) | |
tree | 95288dd3bde3305cc31595de98424a2d043b5233 /clang/lib/Lex/Pragma.cpp | |
parent | 3b15170bd984cd2383b9267441894dc09b92c616 (diff) | |
download | bcm5719-llvm-29a2a191f270aba54c45fc9e1df8347a34348c77.tar.gz bcm5719-llvm-29a2a191f270aba54c45fc9e1df8347a34348c77.zip |
Make SourceLocation::getFileLoc private to reduce the API exposure of
SourceLocation. This requires making some cleanups to token pasting
and _Pragma expansion.
llvm-svn: 62490
Diffstat (limited to 'clang/lib/Lex/Pragma.cpp')
-rw-r--r-- | clang/lib/Lex/Pragma.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Lex/Pragma.cpp b/clang/lib/Lex/Pragma.cpp index 3f5a5a9d19d..922af09e500 100644 --- a/clang/lib/Lex/Pragma.cpp +++ b/clang/lib/Lex/Pragma.cpp @@ -156,11 +156,11 @@ void Preprocessor::Handle_Pragma(Token &Tok) { // Plop the string (including the newline and trailing null) into a buffer // where we can lex it. - SourceLocation TokLoc = CreateString(&StrVal[0], StrVal.size(), StrLoc); + SourceLocation TokLoc = CreateString(&StrVal[0], StrVal.size()); // Make and enter a lexer object so that we lex and expand the tokens just // like any others. - Lexer *TL = Lexer::Create_PragmaLexer(TokLoc, + Lexer *TL = Lexer::Create_PragmaLexer(TokLoc, StrLoc, // do not include the null in the count. StrVal.size()-1, *this); |