aboutsummaryrefslogtreecommitdiff
path: root/Driver/ASTConsumers.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2007-12-19 17:25:59 +0000
committerTed Kremenek <kremenek@apple.com>2007-12-19 17:25:59 +0000
commit3910c7ceb905a03aeffcb0aa1dc5308d0fc64f4c (patch)
treecedc61ccc9acacc64fd9c77a50851d98f9d2e190 /Driver/ASTConsumers.cpp
parent5ca4020c6e1e4f8d81cf4c2890ca8a7c0dd28d56 (diff)
Moved generation of the name of the serialized AST file into
CreateASTSerializer. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45201 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/ASTConsumers.cpp')
-rw-r--r--Driver/ASTConsumers.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/Driver/ASTConsumers.cpp b/Driver/ASTConsumers.cpp
index 49bf59b883..184f29a606 100644
--- a/Driver/ASTConsumers.cpp
+++ b/Driver/ASTConsumers.cpp
@@ -637,8 +637,20 @@ namespace {
} // end anonymous namespace
-ASTConsumer *clang::CreateASTSerializer(const llvm::sys::Path& FName,
+ASTConsumer* clang::CreateASTSerializer(const std::string& InFile,
Diagnostic &Diags,
const LangOptions &Features) {
+
+ // FIXME: This is a hack: "/" separator not portable.
+ std::string::size_type idx = InFile.rfind("/");
+
+ if (idx != std::string::npos && idx == InFile.size()-1)
+ return NULL;
+
+ std::string TargetPrefix( idx == std::string::npos ?
+ InFile : InFile.substr(idx+1));
+
+ llvm::sys::Path FName = llvm::sys::Path((TargetPrefix + ".ast").c_str());
+
return new ASTSerializer(FName, Diags, Features);
}