diff options
Diffstat (limited to 'src/pass.h')
-rw-r--r-- | src/pass.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pass.h b/src/pass.h index 8064edc32..0a3d85e02 100644 --- a/src/pass.h +++ b/src/pass.h @@ -63,7 +63,7 @@ struct PassOptions { int shrinkLevel = 0; // 0, 1, 2 correspond to -O0, -Os, -Oz bool ignoreImplicitTraps = false; // optimize assuming things like div by 0, bad load/store, will not trap bool debugInfo = false; // whether to try to preserve debug info through, which are special calls - FeatureSet features = Feature::MVP; // Which wasm features to accept, and be allowed to use + FeatureSet features = FeatureSet::All; // Which wasm features to accept, and be allowed to use void setDefaultOptimizationOptions() { // -Os is our default |