[Wisp-cvs] wisp/users/dig pe.py,1.31,1.32
Status: Alpha
Brought to you by:
digg
|
From: <di...@us...> - 2003-05-21 12:44:53
|
Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv10186
Modified Files:
pe.py
Log Message:
align *before* placing the import thunk label
Index: pe.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/pe.py,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- pe.py 20 May 2003 05:05:31 -0000 1.31
+++ pe.py 21 May 2003 12:44:45 -0000 1.32
@@ -113,8 +113,8 @@
# emit thunk structures
for dll in imports_by_dlls.keys():
for sym in imports_by_dlls[dll].keys():
- imports.place_symbol('&.imports/thunk/%s@%s' % (sym, dll))
imports.align(2)
+ imports.place_symbol('&.imports/thunk/%s@%s' % (sym, dll))
imports[::2] = 0 # ordinal
imports.emit_string(sym)
imports[::1] = 0
|