about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2015-10-22 16:05:51 -0400
committerNiko Matsakis <niko@alum.mit.edu>2015-10-22 16:58:08 -0400
commitb48b6eaf755d48472d7e5e7b48e8eb96b01b308b (patch)
tree12aefef9c9feff67bb07d39b724169506d77ae76 /src
parente5bc5c7aa06d876dc3135af1266c05850951337f (diff)
downloadrust-b48b6eaf755d48472d7e5e7b48e8eb96b01b308b.tar.gz
rust-b48b6eaf755d48472d7e5e7b48e8eb96b01b308b.zip
fix bug in hir,identified
Diffstat (limited to 'src')
-rw-r--r--src/librustc_driver/pretty.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_driver/pretty.rs b/src/librustc_driver/pretty.rs
index 8407939bebc..a30c437197c 100644
--- a/src/librustc_driver/pretty.rs
+++ b/src/librustc_driver/pretty.rs
@@ -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),