summaryrefslogtreecommitdiff
path: root/src/support
diff options
context:
space:
mode:
authorHeejin Ahn <aheejin@gmail.com>2019-08-28 14:31:08 -0700
committerGitHub <noreply@github.com>2019-08-28 14:31:08 -0700
commite06fc1414bff1085047a559eca1a8b659a20a32e (patch)
tree3fe831746d886c1d5f973b6216c7742066fb2d12 /src/support
parentcb0b31a2d185f18662814c9f3c9158b2eea74760 (diff)
downloadbinaryen-e06fc1414bff1085047a559eca1a8b659a20a32e.tar.gz
binaryen-e06fc1414bff1085047a559eca1a8b659a20a32e.tar.bz2
binaryen-e06fc1414bff1085047a559eca1a8b659a20a32e.zip
Allow all features on wasm2js and add atomic tests (#2311)
This adds `-all` argument to wasm2js testing and fixes wasm2js to actually take that argument (currently it doesn't, when it takes a wast file). This also adds a wasm2js test for `atomic.fence` instruction that was added in #2307.
Diffstat (limited to 'src/support')
-rw-r--r--src/support/command-line.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/support/command-line.h b/src/support/command-line.h
index 82193244e..53bdbff28 100644
--- a/src/support/command-line.h
+++ b/src/support/command-line.h
@@ -52,10 +52,6 @@ public:
void parse(int argc, const char* argv[]);
private:
- Options() = delete;
- Options(const Options&) = delete;
- Options& operator=(const Options&) = delete;
-
struct Option {
std::string longName;
std::string shortName;