[pypy-svn] r9515 - pypy/dist/pypy/translator/llvm/test

cfbolz at codespeak.net cfbolz at codespeak.net
Fri Feb 25 19:35:55 CET 2005


Author: cfbolz
Date: Fri Feb 25 19:35:54 2005
New Revision: 9515

Modified:
   pypy/dist/pypy/translator/llvm/test/test_genllvm.py
Log:
Redid saxiyn's change

Modified: pypy/dist/pypy/translator/llvm/test/test_genllvm.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/test/test_genllvm.py	(original)
+++ pypy/dist/pypy/translator/llvm/test/test_genllvm.py	Fri Feb 25 19:35:54 2005
@@ -14,9 +14,8 @@
     mod.llvm_found = is_on_path("llvm-as")
 
 def compile_function(function, annotate):
-    t = Translator(function)
+    t = Translator(function, simplifying=True)
     a = t.annotate(annotate)
-    t.simplify()
     gen = LLVMGenerator(t)
     return gen.compile()
 



More information about the Pypy-commit mailing list