aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/CC1Options.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-30 08:41:22 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-30 08:41:22 +0000
commit43030a79db7f1aa465b03fc3904e31127feebd7f (patch)
tree64597f072d9764b2b86e39b866416e868d461622 /lib/Driver/CC1Options.cpp
parent1c5944c77383b1f3cbf33ea9c656880c0bd42eff (diff)
clang -cc1: Fix -include-pch now that the test code is in clang-cc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90124 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/CC1Options.cpp')
-rw-r--r--lib/Driver/CC1Options.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/Driver/CC1Options.cpp b/lib/Driver/CC1Options.cpp
index 667335e0b4..010c6a521b 100644
--- a/lib/Driver/CC1Options.cpp
+++ b/lib/Driver/CC1Options.cpp
@@ -17,6 +17,7 @@
#include "clang/Driver/Option.h"
#include "clang/Frontend/CompilerInvocation.h"
#include "clang/Frontend/LangStandard.h"
+#include "clang/Frontend/PCHReader.h"
#include "llvm/ADT/OwningPtr.h"
#include "llvm/ADT/StringSwitch.h"
#include "llvm/ADT/SmallVector.h"
@@ -628,11 +629,8 @@ static void ParsePreprocessorArgs(PreprocessorOptions &Opts, ArgList &Args) {
ie = Args.filtered_end(); it != ie; ++it) {
// PCH is handled specially, we need to extra the original include path.
if (it->getOption().matches(OPT_include_pch)) {
- // FIXME: Disabled for now, I don't want to incur the cost of linking in
- // Sema and all until we are actually going to use it. Alternatively this
- // could be factored out somehow.
- // PCHReader::getOriginalSourceFile(it->getValue(Args));
- std::string OriginalFile = "FIXME";
+ std::string OriginalFile =
+ PCHReader::getOriginalSourceFile(it->getValue(Args));
// FIXME: Don't fail like this.
if (OriginalFile.empty())