[pypy-svn] r30140 - pypy/dist/pypy/translator

rxe at codespeak.net rxe at codespeak.net
Mon Jul 17 23:02:37 CEST 2006


Author: rxe
Date: Mon Jul 17 23:02:35 2006
New Revision: 30140

Modified:
   pypy/dist/pypy/translator/driver.py
Log:
Bug fix


Modified: pypy/dist/pypy/translator/driver.py
==============================================================================
--- pypy/dist/pypy/translator/driver.py	(original)
+++ pypy/dist/pypy/translator/driver.py	Mon Jul 17 23:02:35 2006
@@ -400,7 +400,7 @@
             self.c_entryp = gen.compile_llvm_source(exe_name=exe_name)
             self.create_exe()
         else:
-            self.c_entryp = gen.compile_llvm_source(return_fn=True)
+            _, self.c_entryp = gen.compile_llvm_source()
     #
     task_compile_llvm = taskdef(task_compile_llvm, 
                                 ['source_llvm'], 



More information about the Pypy-commit mailing list