diff options
author | alon@honor <none@none> | 2010-09-04 12:46:53 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-09-04 12:46:53 -0700 |
commit | 03f2bdb99ecbd69698622fec859b883ff57d02b8 (patch) | |
tree | 513e874a9c3d59a1031da1ec760990cb2b8e2b0d | |
parent | 182d88a90bc1993dc5b34d28ee2be4c1cbded80b (diff) |
expose type2 in alloca
-rw-r--r-- | src/parser.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.js b/src/parser.js index dc4362dc..7bba170d 100644 --- a/src/parser.js +++ b/src/parser.js @@ -708,7 +708,7 @@ function intertyper(data) { item.intertype = 'alloca'; item.allocatedType = item.tokens[1]; item.type = { text: addPointing(item.tokens[1].text) }; // type of pointer we will get -// item.type2 = { text: item.tokens[1].text }; // value we will create, and get a pointer to + item.type2 = { text: item.tokens[1].text }; // value we will create, and get a pointer to return [item]; }, }); |