diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-29 12:51:42 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-07 14:23:20 -0800 |
commit | 8470ab8491614b7bb8f08e0f547fd78002a985d4 (patch) | |
tree | e1decb14b34e97250400a25a2dd6282b98808a71 | |
parent | 5a51da6c1c3f96606c90a217349b25c6f6566865 (diff) |
add type to atomic
-rw-r--r-- | src/intertyper.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intertyper.js b/src/intertyper.js index 4957ae31..e727cc8b 100644 --- a/src/intertyper.js +++ b/src/intertyper.js @@ -742,6 +742,7 @@ function intertyper(data, sidePass, baseLineNums) { } var last = getTokenIndexByText(item.tokens, ';'); item.params = splitTokenList(item.tokens.slice(1, last)).map(parseLLVMSegment); + item.type = item.params[1].type; this.forwardItem(item, 'Reintegrator'); } }); |