Add help text

This commit is contained in:
greg 2019-06-05 02:36:08 -07:00
parent 207f73d607
commit f1d1042916
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ pub fn directives_from_pass_names(pass_names: &Vec<String>) -> CommandTree {
vec![
CommandTree::terminal("list-passes", Some("List all registered compiler passes"), vec![], ListPasses),
CommandTree::terminal("show-immediate", None, passes_directives.clone(), ShowImmediate),
CommandTree::terminal("show", None, passes_directives.clone(), Show),
CommandTree::terminal("hide", None, passes_directives.clone(), Hide),
CommandTree::terminal("show", Some("Show debug output for a specific pass"), passes_directives.clone(), Show),
CommandTree::terminal("hide", Some("Hide debug output for a specific pass"), passes_directives.clone(), Hide),
CommandTree::nonterm("total-time", None, vec![
CommandTree::terminal("on", None, vec![], TotalTimeOn),
CommandTree::terminal("off", None, vec![], TotalTimeOff),