diff options
author | alon@honor <none@none> | 2010-10-19 21:24:07 -0700 |
---|---|---|
committer | alon@honor <none@none> | 2010-10-19 21:24:07 -0700 |
commit | 3a35f56a2eab1f79b67fd9f34fca045c537d60b4 (patch) | |
tree | 37e2837b528f77cab0d795280424f9cd7a2a6f78 /src | |
parent | 7a81db16fb5576bd4e378367072b8f6e389a5cf0 (diff) |
fastcc
Diffstat (limited to 'src')
-rw-r--r-- | src/intertyper.js | 2 |
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, |