diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-02-08 12:07:17 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-02-08 12:07:17 -0800 |
commit | ef59283debcb71ddadf5d9e9c2444d463f165557 (patch) | |
tree | 4d45bcf00b6a0620e3c3aa77adb03eff54dd4bd9 /src/utility.js | |
parent | cd7d64a1945a7309804008feead7ebe4acb5a722 (diff) |
refactor legalizer code, and handle stores of <32 bits but not i8 or i16, properly
Diffstat (limited to 'src/utility.js')
-rw-r--r-- | src/utility.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utility.js b/src/utility.js index 5ddccfd4..31eff100 100644 --- a/src/utility.js +++ b/src/utility.js @@ -21,7 +21,7 @@ function dump(item) { ret.push(i + ': [?]'); } } - return lineify(ret.join(', ')); + return ret.join(',\n'); } } |