File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -177,8 +177,8 @@ struct Run {
177
177
178
178
/// Whether or not state tracking should be disabled during compilation.
179
179
/// State tracking is necessary for tier switching and backtracing.
180
- #[ structopt( long = "no- track-state" ) ]
181
- no_track_state : bool ,
180
+ #[ structopt( long = "track-state" ) ]
181
+ track_state : bool ,
182
182
183
183
/// The command name is a string that will override the first argument passed
184
184
/// to the wasm program. This is used in wapm to provide nicer output in
@@ -419,7 +419,7 @@ fn execute_wasm(options: &Run) -> Result<(), String> {
419
419
}
420
420
}
421
421
422
- let track_state = ! options. no_track_state ;
422
+ let track_state = options. track_state ;
423
423
424
424
#[ cfg( feature = "loader-kernel" ) ]
425
425
let is_kernel_loader = if let Some ( LoaderName :: Kernel ) = options. loader {
You can’t perform that action at this time.
0 commit comments