summaryrefslogtreecommitdiff
path: root/src/passes/TraceCalls.cpp
diff options
context:
space:
mode:
authorChristian Speckner <christian.speckner@mayflower.de>2024-07-16 01:04:37 +0200
committerGitHub <noreply@github.com>2024-07-15 16:04:37 -0700
commitfd8b2bd43d73cf1976426e60c22c5261fa343510 (patch)
tree79d1fbc91d65ba0f8a4a6b3db0ca070b0628ebda /src/passes/TraceCalls.cpp
parentaec516f1259c3fec92982db92dc0e4e67ab2251a (diff)
downloadbinaryen-fd8b2bd43d73cf1976426e60c22c5261fa343510.tar.gz
binaryen-fd8b2bd43d73cf1976426e60c22c5261fa343510.tar.bz2
binaryen-fd8b2bd43d73cf1976426e60c22c5261fa343510.zip
Allow different arguments for multiple instances of a pass (#6687)
Each pass instance can now store an argument for it, which can be different. This may be a breaking change for the corner case of running a pass multiple times and setting the pass's argument multiple times as well (before, the last pass argument affected them all; now, it affects the last instance only). This only affects arguments with the name of a pass; others remain global, as before (and multiple passes can read them, in fact). See the CHANGELOG for details. Fixes #6646
Diffstat (limited to 'src/passes/TraceCalls.cpp')
-rw-r--r--src/passes/TraceCalls.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/passes/TraceCalls.cpp b/src/passes/TraceCalls.cpp
index 01278c2e9..44bc16e95 100644
--- a/src/passes/TraceCalls.cpp
+++ b/src/passes/TraceCalls.cpp
@@ -124,10 +124,10 @@ struct TraceCalls : public Pass {
bool addsEffects() override { return true; }
void run(Module* module) override {
- auto functionsDefinitions = getPassOptions().getArgument(
- "trace-calls",
- "TraceCalls usage: wasm-opt "
- "--trace-calls=FUNCTION_TO_TRACE[:TRACER_NAME][,...]");
+ auto functionsDefinitions =
+ getArgument("trace-calls",
+ "TraceCalls usage: wasm-opt "
+ "--trace-calls=FUNCTION_TO_TRACE[:TRACER_NAME][,...]");
auto tracedFunctions = parseArgument(functionsDefinitions);