Skip to content

Commit b48b6ea

Browse files
committed
fix bug in hir,identified
1 parent e5bc5c7 commit b48b6ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_driver/pretty.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ pub fn parse_pretty(sess: &Session,
9191
("expanded,identified", _) => PpmSource(PpmExpandedIdentified),
9292
("expanded,hygiene", _) => PpmSource(PpmExpandedHygiene),
9393
("hir", true) => PpmHir(PpmNormal),
94-
("hir,identified", true) => PpmHir(PpmExpandedIdentified),
94+
("hir,identified", true) => PpmHir(PpmIdentified),
9595
("hir,typed", true) => PpmHir(PpmTyped),
9696
("flowgraph", true) => PpmFlowGraph(PpFlowGraphMode::Default),
9797
("flowgraph,unlabelled", true) => PpmFlowGraph(PpFlowGraphMode::UnlabelledEdges),

0 commit comments

Comments
 (0)