summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTaiju Tsuiki <tzik@users.noreply.github.com>2017-10-25 01:38:40 +0900
committerDerek Schuff <dschuff@chromium.org>2017-10-24 09:38:40 -0700
commit0ebb699f0cf1128dfeca1abc967b21490230ab93 (patch)
tree28ce319422c229697b7a2a0dfcfbfa56746b91ec /src
parent54efd418f3758882aaf0401d3e7f0f7a86c21cc2 (diff)
downloadbinaryen-0ebb699f0cf1128dfeca1abc967b21490230ab93.tar.gz
binaryen-0ebb699f0cf1128dfeca1abc967b21490230ab93.tar.bz2
binaryen-0ebb699f0cf1128dfeca1abc967b21490230ab93.zip
Remove unused PassOptions from wasm-ctor-eval.cpp (#1238)
|passOptions| in wasm-ctor-eval.cpp causes a compile failure, -Wunused-variable on the clang build.
Diffstat (limited to 'src')
-rw-r--r--src/tools/wasm-ctor-eval.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tools/wasm-ctor-eval.cpp b/src/tools/wasm-ctor-eval.cpp
index aea0646a3..dc9b15144 100644
--- a/src/tools/wasm-ctor-eval.cpp
+++ b/src/tools/wasm-ctor-eval.cpp
@@ -363,7 +363,6 @@ void evalCtors(Module& wasm, std::vector<std::string> ctors) {
int main(int argc, const char* argv[]) {
Name entry;
std::vector<std::string> passes;
- PassOptions passOptions;
bool emitBinary = true;
bool debugInfo = false;
std::string ctorsString;