diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2015-10-22 16:05:51 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2015-10-22 16:58:08 -0400 |
| commit | b48b6eaf755d48472d7e5e7b48e8eb96b01b308b (patch) | |
| tree | 12aefef9c9feff67bb07d39b724169506d77ae76 /src | |
| parent | e5bc5c7aa06d876dc3135af1266c05850951337f (diff) | |
| download | rust-b48b6eaf755d48472d7e5e7b48e8eb96b01b308b.tar.gz rust-b48b6eaf755d48472d7e5e7b48e8eb96b01b308b.zip | |
fix bug in hir,identified
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc_driver/pretty.rs | 2 |
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), |
