aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-09-27 20:12:41 -0700
committeralon@honor <none@none>2010-09-27 20:12:41 -0700
commit46ac4d27413df891bc0d8c60f94ef0f29955d766 (patch)
tree9e28753e7e301a5c3c8418ca831c8c8227ec940a
parent6e3892161b56e941a55d6d869074a3cbd68f51ab (diff)
ignore 'noalias' in function defs
-rw-r--r--src/intertyper.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intertyper.js b/src/intertyper.js
index 2d0271e6..8fb15654 100644
--- a/src/intertyper.js
+++ b/src/intertyper.js
@@ -282,7 +282,7 @@ function intertyper(data) {
substrate.addZyme('FuncHeader', {
processItem: function(item) {
item.tokens = item.tokens.filter(function(token) {
- return ['available_externally', 'weak', 'internal', 'signext', 'zeroext', 'nounwind', 'define', 'linkonce_odr', 'inlinehint', '{'].indexOf(token.text) == -1;
+ return ['noalias', 'available_externally', 'weak', 'internal', 'signext', 'zeroext', 'nounwind', 'define', 'linkonce_odr', 'inlinehint', '{'].indexOf(token.text) == -1;
});
return [{
__result__: true,