Author: Ronan Lamy <[email protected]>
Branch: kill-ootype
Changeset: r65276:8c7a3e2b1d57
Date: 2013-07-07 21:03 +0200
http://bitbucket.org/pypy/pypy/changeset/8c7a3e2b1d57/
Log: remove more CLI left-overs
diff --git a/rpython/jit/backend/detect_cpu.py
b/rpython/jit/backend/detect_cpu.py
--- a/rpython/jit/backend/detect_cpu.py
+++ b/rpython/jit/backend/detect_cpu.py
@@ -99,8 +99,6 @@
return "rpython.jit.backend.x86.runner", "CPU386_NO_SSE2"
elif backend_name == MODEL_X86_64:
return "rpython.jit.backend.x86.runner", "CPU_X86_64"
- #elif backend_name == 'cli':
- # return "rpython.jit.backend.cli.runner", "CliCPU"
elif backend_name == MODEL_ARM:
return "rpython.jit.backend.arm.runner", "CPU_ARM"
else:
diff --git a/rpython/rtyper/test/test_rfloat.py
b/rpython/rtyper/test/test_rfloat.py
--- a/rpython/rtyper/test/test_rfloat.py
+++ b/rpython/rtyper/test/test_rfloat.py
@@ -178,11 +178,7 @@
n1 = x * x
n2 = y * y * y
return rfloat.isnan(n1 / n2)
- if self.__class__.__name__ != 'TestCliFloat':
- # the next line currently fails on mono 2.6.7 (ubuntu 11.04), see:
- # https://bugzilla.novell.com/show_bug.cgi?id=692493
- assert self.interpret(fn, [1e200, 1e200]) # nan
- #
+ assert self.interpret(fn, [1e200, 1e200]) # nan
assert not self.interpret(fn, [1e200, 1.0]) # +inf
assert not self.interpret(fn, [1e200, -1.0]) # -inf
assert not self.interpret(fn, [42.5, 2.3]) # +finite
@@ -210,11 +206,7 @@
assert self.interpret(fn, [42.5, -2.3]) # -finite
assert not self.interpret(fn, [1e200, 1.0]) # +inf
assert not self.interpret(fn, [1e200, -1.0]) # -inf
- #
- if self.__class__.__name__ != 'TestCliFloat':
- # the next line currently fails on mono 2.6.7 (ubuntu 11.04), see:
- # https://bugzilla.novell.com/show_bug.cgi?id=692493
- assert not self.interpret(fn, [1e200, 1e200]) # nan
+ assert not self.interpret(fn, [1e200, 1e200]) # nan
def test_formatd(self):
from rpython.rlib.rfloat import formatd
diff --git a/rpython/translator/interactive.py
b/rpython/translator/interactive.py
--- a/rpython/translator/interactive.py
+++ b/rpython/translator/interactive.py
@@ -128,17 +128,6 @@
self.driver.compile_c()
return self.driver.c_entryp
- def compile_cli(self, **kwds):
- self.update_options(kwds)
- self.ensure_backend('cli')
- self.driver.compile_cli()
- return self.driver.c_entryp
-
- def source_cli(self, **kwds):
- self.update_options(kwds)
- self.ensure_backend('cli')
- self.driver.source_cli()
-
def compile_jvm(self, **kwds):
self.update_options(kwds)
self.ensure_backend('jvm')
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit