diff options
| -rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 1489fda..23ababa 100644 --- a/src/main.rs +++ b/src/main.rs @@ -22,10 +22,10 @@ fn parse_args() -> Args { if path.is_file() { args.file = Some(path); } else if s == "-v" { - args.print_exec = true; + args.print_bytecode = true; } else if s == "-vv" { - args.print_exec = true; args.print_bytecode = true; + args.print_exec = true; } else { eprintln!("Invalid argument {}.", s); } |
