[pypy-svn] r69166 - pypy/trunk/pypy/jit/backend/cli
antocuni at codespeak.net
antocuni at codespeak.net
Wed Nov 11 14:47:28 CET 2009
Author: antocuni
Date: Wed Nov 11 14:47:28 2009
New Revision: 69166
Modified:
pypy/trunk/pypy/jit/backend/cli/runner.py
Log:
one more type to support
Modified: pypy/trunk/pypy/jit/backend/cli/runner.py
==============================================================================
--- pypy/trunk/pypy/jit/backend/cli/runner.py (original)
+++ pypy/trunk/pypy/jit/backend/cli/runner.py Wed Nov 11 14:47:28 2009
@@ -301,6 +301,8 @@
return ootype.nullruntimeclass
elif T is ootype.Signed:
return dotnet.classof(System.Int32)
+ elif T is ootype.Unsigned:
+ return dotnet.classof(System.UInt32)
elif T is ootype.Bool:
return dotnet.classof(System.Boolean)
elif T is ootype.Float:
More information about the Pypy-commit
mailing list