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

sanxiyn at codespeak.net sanxiyn at codespeak.net
Fri Feb 25 17:14:24 CET 2005


Author: sanxiyn
Date: Fri Feb 25 17:14:24 2005
New Revision: 9504

Modified:
   pypy/dist/pypy/translator/llvm/test/test_genllvm.py
Log:
Adjust LLVM test for r9502 changes


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 17:14:24 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