summaryrefslogtreecommitdiff
path: root/src/passes/Strip.cpp
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2019-04-12 18:27:13 -0700
committerGitHub <noreply@github.com>2019-04-12 18:27:13 -0700
commit9495b338121140d585648d64fb99e8ef7f92f867 (patch)
tree57418b1f685a4a5a43ee291759f64e9a763b1245 /src/passes/Strip.cpp
parent883d14de7157950063f74b81658d00df0d53be8d (diff)
downloadbinaryen-9495b338121140d585648d64fb99e8ef7f92f867.tar.gz
binaryen-9495b338121140d585648d64fb99e8ef7f92f867.tar.bz2
binaryen-9495b338121140d585648d64fb99e8ef7f92f867.zip
Move features from passOptions to Module (#2001)
This allows us to emit a (potentially modified) target features section and conditionally emit other sections such as the DataCount section based on the presence of features.
Diffstat (limited to 'src/passes/Strip.cpp')
-rw-r--r--src/passes/Strip.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/passes/Strip.cpp b/src/passes/Strip.cpp
index 40e5a9e9d..edc171ab3 100644
--- a/src/passes/Strip.cpp
+++ b/src/passes/Strip.cpp
@@ -75,9 +75,4 @@ Pass *createStripProducersPass() {
});
}
-Pass *createStripTargetFeaturesPass() {
- return new Strip([&](const UserSection& curr) {
- return curr.name == BinaryConsts::UserSections::TargetFeatures;
- });
-}
} // namespace wasm