From 44085f825883e25d216c2d6866180a4db2a7a53c Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Mon, 24 Jul 2017 22:41:03 -0700 Subject: 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` --- ubsan.blacklist | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 ubsan.blacklist (limited to 'ubsan.blacklist') 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 -- cgit v1.2.3