aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-07-07 06:06:06 +0000
committerChris Lattner <sabre@nondot.org>2006-07-07 06:06:06 +0000
commit94aa7f3ba87e39f77d57f7f8917cebdff5492b29 (patch)
treea6f36140c18f3e6c9df2ff2fdf0f85a42b8528b3 /lib/Bytecode
parent3c8c1639b60409b7475d04f47848fda26a9460be (diff)
Fix a bug in my previous patch which broke building llvm/runtime when using llvm-gcc3.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29041 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode')
-rw-r--r--lib/Bytecode/Reader/Reader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Reader/Reader.h b/lib/Bytecode/Reader/Reader.h
index 9cecf52436..da199519c3 100644
--- a/lib/Bytecode/Reader/Reader.h
+++ b/lib/Bytecode/Reader/Reader.h
@@ -187,7 +187,7 @@ public:
/// here. It simply releases the module from its provided and frees up our
/// state.
/// @brief Release our hold on the generated module
- Module* releaseModule() {
+ Module* releaseModule(std::string *ErrInfo = 0) {
// Since we're losing control of this Module, we must hand it back complete
Module *M = ModuleProvider::releaseModule();
freeState();