From 9573b91c322511fdcd727057dc058ee8c0fdc19c Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 17 Oct 2003 18:26:51 +0000 Subject: [PATCH] Return the Module being materialized to avoid always calling getModule(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9198 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ModuleProvider.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/ModuleProvider.h b/include/llvm/ModuleProvider.h index 8f7010360cc..847fda985ba 100644 --- a/include/llvm/ModuleProvider.h +++ b/include/llvm/ModuleProvider.h @@ -32,7 +32,7 @@ public: /// materializeModule - make sure the entire Module has been completely read. /// - void materializeModule(); + Module* materializeModule(); /// releaseModule - no longer delete the Module* when provider is destroyed. ///