diff options
Diffstat (limited to 'src/passes/pass.cpp')
-rw-r--r-- | src/passes/pass.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/passes/pass.cpp b/src/passes/pass.cpp index ad0cc448c..fd9106092 100644 --- a/src/passes/pass.cpp +++ b/src/passes/pass.cpp @@ -235,6 +235,10 @@ void PassRegistry::registerPasses() { "lower all uses of i64s to use i32s instead", createI64ToI32LoweringPass); registerPass( + "trace-calls", + "instrument the build with code to intercept specific function calls", + createTraceCallsPass); + registerPass( "instrument-locals", "instrument the build with code to intercept all loads and stores", createInstrumentLocalsPass); |