[pypy-svn] r52084 - pypy/dist/pypy/jit/codegen/llgraph
arigo at codespeak.net
arigo at codespeak.net
Mon Mar 3 11:58:01 CET 2008
Author: arigo
Date: Mon Mar 3 11:58:00 2008
New Revision: 52084
Modified:
pypy/dist/pypy/jit/codegen/llgraph/llimpl.py
Log:
Fix typo
Modified: pypy/dist/pypy/jit/codegen/llgraph/llimpl.py
==============================================================================
--- pypy/dist/pypy/jit/codegen/llgraph/llimpl.py (original)
+++ pypy/dist/pypy/jit/codegen/llgraph/llimpl.py Mon Mar 3 11:58:00 2008
@@ -46,7 +46,7 @@
def functionptr_general(TYPE, name, **attrs):
if isinstance(TYPE, lltype.FuncType):
- return functionptr(TYPE, name, **attrs)
+ return lltype.functionptr(TYPE, name, **attrs)
else:
assert isinstance(TYPE, ootype.StaticMethod)
return ootype.static_meth(TYPE, name, **attrs)
More information about the pypy-svn
mailing list