diff options
author | Ben Smith <binjimin@gmail.com> | 2017-07-24 22:41:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-24 22:41:03 -0700 |
commit | 44085f825883e25d216c2d6866180a4db2a7a53c (patch) | |
tree | 737d556deb8d5ec0c8901151c1d4b9f0887b9839 /ubsan.blacklist | |
parent | 3142da34c5cafb41b1953556c9a312d5beab5780 (diff) | |
download | wabt-44085f825883e25d216c2d6866180a4db2a7a53c.tar.gz wabt-44085f825883e25d216c2d6866180a4db2a7a53c.tar.bz2 wabt-44085f825883e25d216c2d6866180a4db2a7a53c.zip |
Refactor wasm-opcodecnt. (#580)
Simplify some of the code using map instead of vector. Also added the
ability to count immediates of any opcode.
* Add ubsan blacklist, because stl_tree is broken in older libstdc++
implementations. This also requires a clang upgrade, since clang 3.5 is
too old to support blacklists w/ ubsan.
* Fix FileStream move constructor; this was incorrect, but worked on gcc/clang
because the actual move was elided.
* Use MATRIX_EVAL to bypass CC being set by `compiler` in `.travis.yml`
Diffstat (limited to 'ubsan.blacklist')
-rw-r--r-- | ubsan.blacklist | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ubsan.blacklist b/ubsan.blacklist new file mode 100644 index 00000000..f0aeaea7 --- /dev/null +++ b/ubsan.blacklist @@ -0,0 +1,5 @@ +# Work around libstdc++ bug: https://llvm.org/bugs/show_bug.cgi?id=18156 +# Also see: http://lists.llvm.org/pipermail/cfe-dev/2015-January/040945.html +src:*/ios_base.h +# Work around another libstdc++ bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60734 +src:*/stl_tree.h |