aboutsummaryrefslogtreecommitdiff
path: root/src/parser.js
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-09-04 12:46:53 -0700
committeralon@honor <none@none>2010-09-04 12:46:53 -0700
commit03f2bdb99ecbd69698622fec859b883ff57d02b8 (patch)
tree513e874a9c3d59a1031da1ec760990cb2b8e2b0d /src/parser.js
parent182d88a90bc1993dc5b34d28ee2be4c1cbded80b (diff)
expose type2 in alloca
Diffstat (limited to 'src/parser.js')
-rw-r--r--src/parser.js2
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];
},
});