aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.c b/main.c
index b09b5f4c..25008c3d 100644
--- a/main.c
+++ b/main.c
@@ -146,6 +146,7 @@ static void set_locale_stuff(void);
static bool stopped_early = false;
int do_flags = false;
+bool do_itrace = false; /* provide simple instruction trace */
bool do_optimize = true; /* apply default optimizations */
static int do_nostalgia = false; /* provide a blast from the past */
static int do_binary = false; /* hands off my data! */
@@ -1617,7 +1618,7 @@ parse_args(int argc, char **argv)
break;
case 'I':
- do_flags |= DO_ITRACE;
+ do_itrace = true;
break;
case 'l':