Skip to content

Commit

Permalink
Fix "dum-meta" option so it doesn't show up in the middle of the docu…
Browse files Browse the repository at this point in the history
…mentation

on the trace option.
  • Loading branch information
mindhog committed Feb 7, 2017
1 parent 40f1a8b commit 35b2491
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crack_main.cc
Expand Up @@ -113,9 +113,12 @@ void usage(int retval) {
cout << " --stats\n Emit statistics about compile time operations." <<
endl;
cout << " --dump-func-table\n Dump the debug function table." << endl;
cout << " --dump-meta\n Dump executor meta-data and exit." << endl;

// Add docs on new options above here. (the for loop below emits keywords
// for the "trace" option.)
cout << " -t <module> --trace <module>\n Turn tracing on for the "
"module." << endl;
cout << " --dump-meta\n Dump executor meta-data and exit." << endl;
cout << " Modules supporting tracing:" << endl;
map<string, string> traceModules = Tracer::getTracers();
for (map<string, string>::iterator i = traceModules.begin();
Expand Down

0 comments on commit 35b2491

Please sign in to comment.