about summary refs log tree commit diff
path: root/src/librustc/session
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-09-22 21:34:27 -0700
committerAlex Crichton <alex@alexcrichton.com>2017-09-28 07:45:50 -0700
commit7694ca419b3ade48e22982b69dec90eb45d8da73 (patch)
tree6d6042991fef7c098f7b2ee773d5aacb66de2851 /src/librustc/session
parent041d3550f6d963144722094edfccb3e4e3b74114 (diff)
downloadrust-7694ca419b3ade48e22982b69dec90eb45d8da73.tar.gz
rust-7694ca419b3ade48e22982b69dec90eb45d8da73.zip
Update to the `cc` crate
This is the name the `gcc` crate has moved to
Diffstat (limited to 'src/librustc/session')
-rw-r--r--src/librustc/session/config.rs28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/librustc/session/config.rs b/src/librustc/session/config.rs
index d3256357941..b1bf893cfd8 100644
--- a/src/librustc/session/config.rs
+++ b/src/librustc/session/config.rs
@@ -1373,20 +1373,20 @@ pub fn rustc_optgroups() -> Vec<RustcOptGroup> {
                                  always = always colorize output;
                                  never  = never colorize output", "auto|always|never"),
 
-        opt::flagopt("", "pretty",
-                     "Pretty-print the input instead of compiling;
-                      valid types are: `normal` (un-annotated source),
-                      `expanded` (crates expanded), or
-                      `expanded,identified` (fully parenthesized, AST nodes with IDs).",
-                     "TYPE"),
-        opt::flagopt("", "unpretty",
-                     "Present the input source, unstable (and less-pretty) variants;
-                      valid types are any of the types for `--pretty`, as well as:
-                      `flowgraph=<nodeid>` (graphviz formatted flowgraph for node),
-                      `everybody_loops` (all function bodies replaced with `loop {}`),
-                      `hir` (the HIR), `hir,identified`, or
-                      `hir,typed` (HIR with types for each node).",
-                     "TYPE"),
+        opt::opt("", "pretty",
+                 "Pretty-print the input instead of compiling;
+                  valid types are: `normal` (un-annotated source),
+                  `expanded` (crates expanded), or
+                  `expanded,identified` (fully parenthesized, AST nodes with IDs).",
+                 "TYPE"),
+        opt::opt("", "unpretty",
+                 "Present the input source, unstable (and less-pretty) variants;
+                  valid types are any of the types for `--pretty`, as well as:
+                  `flowgraph=<nodeid>` (graphviz formatted flowgraph for node),
+                  `everybody_loops` (all function bodies replaced with `loop {}`),
+                  `hir` (the HIR), `hir,identified`, or
+                  `hir,typed` (HIR with types for each node).",
+                 "TYPE"),
     ]);
     opts
 }