aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralon@honor <none@none>2010-10-19 21:24:07 -0700
committeralon@honor <none@none>2010-10-19 21:24:07 -0700
commit3a35f56a2eab1f79b67fd9f34fca045c537d60b4 (patch)
tree37e2837b528f77cab0d795280424f9cd7a2a6f78
parent7a81db16fb5576bd4e378367072b8f6e389a5cf0 (diff)
fastcc
-rw-r--r--src/intertyper.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intertyper.js b/src/intertyper.js
index d012d38f..0b31236c 100644
--- a/src/intertyper.js
+++ b/src/intertyper.js
@@ -293,7 +293,7 @@ function intertyper(data) {
substrate.addZyme('FuncHeader', {
processItem: function(item) {
item.tokens = item.tokens.filter(function(token) {
- return ['noalias', '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', '{', 'fastcc'].indexOf(token.text) == -1;
});
var ret = [{
__result__: true,