[pypy-svn] r29646 - pypy/dist/pypy/translator/cli

antocuni at codespeak.net antocuni at codespeak.net
Wed Jul 5 19:20:27 CEST 2006


Author: antocuni
Date: Wed Jul  5 19:20:24 2006
New Revision: 29646

Modified:
   pypy/dist/pypy/translator/cli/ilgenerator.py
Log:
This method name was simply wrong.



Modified: pypy/dist/pypy/translator/cli/ilgenerator.py
==============================================================================
--- pypy/dist/pypy/translator/cli/ilgenerator.py	(original)
+++ pypy/dist/pypy/translator/cli/ilgenerator.py	Wed Jul  5 19:20:24 2006
@@ -152,7 +152,7 @@
     def get_field(self, field_data):
         self.opcode('ldfld %s %s::%s' % field_data )
 
-    def load_set_field(self, cts_type, name):
+    def load_static_field(self, cts_type, name):
         self.opcode('ldsfld %s %s' % (cts_type, name))
     
     def throw(self):



More information about the Pypy-commit mailing list