diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-08-07 15:20:04 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-08-07 15:30:08 -0700 |
commit | dae49ee3b43dd5b22ee9436c45cf7343ed6a4e6c (patch) | |
tree | d0fe1dae76b59fbc9f9b496f298f4a8d7b8c09d9 /tools/asm_module.py | |
parent | 9734c6dcb98cb70629e50ca6083042783b873b9c (diff) |
fix static linker parsing bug
Diffstat (limited to 'tools/asm_module.py')
-rw-r--r-- | tools/asm_module.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/asm_module.py b/tools/asm_module.py index e54cfc21..bf7fa71d 100644 --- a/tools/asm_module.py +++ b/tools/asm_module.py @@ -49,7 +49,7 @@ class AsmModule(): # tables and exports post_js = self.js[self.end_funcs:self.end_asm] - ret = post_js.find('return') + ret = post_js.find('return ') self.tables_js = post_js[:ret] self.exports_js = post_js[ret:] self.tables = self.parse_tables(self.tables_js) |