diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-02-10 18:51:23 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-02-11 14:54:57 -0800 |
commit | 84310d86b78379d6dcc31bfad1e6eb961a0322a3 (patch) | |
tree | 25762ec65cd58598dc4c57752c2fbaa6033bfe2f | |
parent | 93234d65ff6079e25420c654f3b3f29c5e01161d (diff) |
fix typo in select legalization
-rw-r--r-- | src/analyzer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyzer.js b/src/analyzer.js index 73182f69..6be3d91e 100644 --- a/src/analyzer.js +++ b/src/analyzer.js @@ -431,7 +431,7 @@ function analyzer(data, sidePass) { type: 'i' + otherElementsA[j].bits, param1: value.param1, param2: { intertype: 'value', ident: otherElementsA[j].ident, type: 'i' + otherElementsA[j].bits }, - param2: { intertype: 'value', ident: otherElementsB[j].ident, type: 'i' + otherElementsB[j].bits } + param3: { intertype: 'value', ident: otherElementsB[j].ident, type: 'i' + otherElementsB[j].bits } }; }; break; |