aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-05-13 11:50:57 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-08-08 16:02:18 -0700
commit3ce7d9e0249025d81627c23ccda594e60acbcf25 (patch)
treedb82ae1f09345c8a489112d6badc4b407fbe251d
parentd3188d30a09767d2bfd693d658c972ccc5713602 (diff)
ignore llvm 3.3 attributes
-rw-r--r--src/intertyper.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/intertyper.js b/src/intertyper.js
index dd6e5522..3fc840c4 100644
--- a/src/intertyper.js
+++ b/src/intertyper.js
@@ -360,6 +360,8 @@ function intertyper(data, sidePass, baseLineNums) {
warn('Ignoring module asm: ' + item.tokens[2].text);
return '/dev/null';
}
+ if (token0Text == 'attributes')
+ return '/dev/null';
}
if (tokensLength >= 3 && (token0Text == 'call' || token1Text == 'call'))
return 'Call';