aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorSebastian Redl <sebastian.redl@getdesigned.at>2010-08-18 23:56:43 +0000
committerSebastian Redl <sebastian.redl@getdesigned.at>2010-08-18 23:56:43 +0000
commit2c499f6561c601f7173c4682696fce1ff8c96b56 (patch)
treed97c9cd6c2c248717b26eb84cf481cfdc2bfed45 /clang/lib/Frontend/CompilerInvocation.cpp
parent1914c6fef85629753cbd70c6f43bc5ee806fb4ca (diff)
downloadllvm-2c499f6561c601f7173c4682696fce1ff8c96b56.zip
llvm-2c499f6561c601f7173c4682696fce1ff8c96b56.tar.gz
llvm-2c499f6561c601f7173c4682696fce1ff8c96b56.tar.bz2
Rename PCHReader to ASTReader.
llvm-svn: 111467
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r--clang/lib/Frontend/CompilerInvocation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp
index 68b384f..f40fb64 100644
--- a/clang/lib/Frontend/CompilerInvocation.cpp
+++ b/clang/lib/Frontend/CompilerInvocation.cpp
@@ -1418,7 +1418,7 @@ static void ParsePreprocessorArgs(PreprocessorOptions &Opts, ArgList &Args,
// PCH is handled specially, we need to extra the original include path.
if (A->getOption().matches(OPT_include_pch)) {
std::string OriginalFile =
- PCHReader::getOriginalSourceFile(A->getValue(Args), Diags);
+ ASTReader::getOriginalSourceFile(A->getValue(Args), Diags);
if (OriginalFile.empty())
continue;