]> git.lizzy.rs Git - rust.git/commitdiff
fix bug in hir,identified
authorNiko Matsakis <niko@alum.mit.edu>
Thu, 22 Oct 2015 20:05:51 +0000 (16:05 -0400)
committerNiko Matsakis <niko@alum.mit.edu>
Thu, 22 Oct 2015 20:58:08 +0000 (16:58 -0400)
src/librustc_driver/pretty.rs

index 8407939bebc58b93c23ca69a27b0cc5af18f8286..a30c437197c3b1e930fba1dfb148a78e7f667290 100644 (file)
@@ -91,7 +91,7 @@ pub fn parse_pretty(sess: &Session,
         ("expanded,identified", _) => PpmSource(PpmExpandedIdentified),
         ("expanded,hygiene", _) => PpmSource(PpmExpandedHygiene),
         ("hir", true)       => PpmHir(PpmNormal),
-        ("hir,identified", true) => PpmHir(PpmExpandedIdentified),
+        ("hir,identified", true) => PpmHir(PpmIdentified),
         ("hir,typed", true)        => PpmHir(PpmTyped),
         ("flowgraph", true)    => PpmFlowGraph(PpFlowGraphMode::Default),
         ("flowgraph,unlabelled", true)    => PpmFlowGraph(PpFlowGraphMode::UnlabelledEdges),