diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-18 23:56:43 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-18 23:56:43 +0000 |
commit | 2c499f6561c601f7173c4682696fce1ff8c96b56 (patch) | |
tree | d97c9cd6c2c248717b26eb84cf481cfdc2bfed45 /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 1914c6fef85629753cbd70c6f43bc5ee806fb4ca (diff) | |
download | llvm-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.cpp | 2 |
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; |