diff options
author | Remko Tronçon <remko@users.noreply.github.com> | 2022-11-16 19:47:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-16 18:47:57 +0000 |
commit | 9e8d5940cd26f697223913f368ff1d67b060fde5 (patch) | |
tree | a06623cd56547db2ff01e6139588717977aad308 /include | |
parent | b67b1288ee30b7f8fab3d04b8b9db821226d6d1b (diff) | |
download | wabt-9e8d5940cd26f697223913f368ff1d67b060fde5.tar.gz wabt-9e8d5940cd26f697223913f368ff1d67b060fde5.tar.bz2 wabt-9e8d5940cd26f697223913f368ff1d67b060fde5.zip |
interp: Replace condition for including `type` field in `Value` (#2071)
Value's `type` field was compiled conditionally on the `NDEBUG` define.
This causes problems with programs compiling against libwabt that don't
define this macro, as the Value layout no longer matches.
Using a condition in config.h.
Fixes #2069
Diffstat (limited to 'include')
-rw-r--r-- | include/wabt/interp/interp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/wabt/interp/interp.h b/include/wabt/interp/interp.h index bb3cf487..dc405a8e 100644 --- a/include/wabt/interp/interp.h +++ b/include/wabt/interp/interp.h @@ -27,6 +27,7 @@ #include <vector> #include "wabt/cast.h" +#include "wabt/config.h" #include "wabt/common.h" #include "wabt/feature.h" #include "wabt/opcode.h" @@ -580,7 +581,7 @@ struct Value { }; public: -#ifndef NDEBUG +#ifdef WABT_DEBUG Value() : v128_(0, 0, 0, 0), type(ValueType::Any) {} void SetType(ValueType t) { type = t; } void CheckType(ValueType t) const { |