diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-02-22 18:16:21 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-02-22 18:16:21 -0800 |
commit | 90710c0c8ee4425c06402cc7831abdee8c519a43 (patch) | |
tree | 7f18dac066988e902e93d4ba8b43fdc68cb6d82c /src/parseTools.js | |
parent | 15595f1ea36fa4268e5db66b8717999f7f363621 (diff) |
asmify memcmp
Diffstat (limited to 'src/parseTools.js')
-rw-r--r-- | src/parseTools.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parseTools.js b/src/parseTools.js index ca9ad40a..15c2169b 100644 --- a/src/parseTools.js +++ b/src/parseTools.js @@ -1145,8 +1145,8 @@ function makeGetValue(ptr, pos, type, noNeedFirst, unsigned, ignore, align, noSa } } -function makeGetValueAsm(ptr, pos, type) { - return makeGetValue(ptr, pos, type, null, null, null, null, null, true); +function makeGetValueAsm(ptr, pos, type, unsigned) { + return makeGetValue(ptr, pos, type, null, unsigned, null, null, null, true); } function indexizeFunctions(value, type) { |