Skip to content
Snippets Groups Projects
Commit 6b75de1e authored by David Blaikie's avatar David Blaikie
Browse files

unique_ptrify clang::BackendConsumer::takeModule

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@216707 91177308-0d34-0410-b5e6-96231b3b80d8
parent a29d00b0
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ namespace clang {
llvm::TimePassesIsEnabled = TimePasses;
}
llvm::Module *takeModule() { return TheModule.release(); }
std::unique_ptr<llvm::Module> takeModule() { return std::move(TheModule); }
llvm::Module *takeLinkModule() { return LinkModule.release(); }
void HandleCXXStaticMemberVarInstantiation(VarDecl *VD) override {
......@@ -576,7 +576,7 @@ void CodeGenAction::EndSourceFileAction() {
BEConsumer->takeLinkModule();
// Steal the module from the consumer.
TheModule.reset(BEConsumer->takeModule());
TheModule = BEConsumer->takeModule();
}
std::unique_ptr<llvm::Module> CodeGenAction::takeModule() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment