aboutsummaryrefslogtreecommitdiff
path: root/src/modules.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-11-28 17:01:02 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-12-07 14:23:19 -0800
commit19d06326b6cbfe729ab9613a22a4246aa95b9f52 (patch)
tree25da215f89dceca38fadbb6aaa8bd672349103e0 /src/modules.js
parented00768f160aa4674ffedc74b98e6194da0493df (diff)
move asm.js function tables into asm
Diffstat (limited to 'src/modules.js')
-rw-r--r--src/modules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.js b/src/modules.js
index 6847e1de..5bcf614f 100644
--- a/src/modules.js
+++ b/src/modules.js
@@ -260,7 +260,7 @@ var Functions = {
generateIndexing: function() {
var tables = {};
if (ASM_JS) {
- ['x', 'ii'].forEach(function(sig) { // add some default signatures that are used in the library
+ ['ii'].forEach(function(sig) { // add some default signatures that are used in the library
tables[sig] = zeros(this.nextIndex); // TODO: make them compact
});
}