diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-02-09 19:43:23 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-09 19:43:23 -0500 |
| commit | ae5d8fc929d73f0eb6d5a37e44f1c8405b7a13c1 (patch) | |
| tree | 570c68246b18b9ee4a94189a166671b5a0e83f9b | |
| parent | ed7f3c46355de38e335b0937256f173fcb6bf090 (diff) | |
| parent | ca9c7ae61b4bc948e45f7f431c9c27ef87d33cd5 (diff) | |
| download | rust-ae5d8fc929d73f0eb6d5a37e44f1c8405b7a13c1.tar.gz rust-ae5d8fc929d73f0eb6d5a37e44f1c8405b7a13c1.zip | |
Rollup merge of #39693 - durka:patch-36, r=petrochenkov
driver: restore partially deleted comment Fixes #39689. Comment was lost in commit 811b8747 (#31916 @nagisa).
| -rw-r--r-- | src/librustc_driver/driver.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_driver/driver.rs b/src/librustc_driver/driver.rs index 33bf4d5276a..4fe3730bbe2 100644 --- a/src/librustc_driver/driver.rs +++ b/src/librustc_driver/driver.rs @@ -1000,6 +1000,7 @@ pub fn phase_3_run_analysis_passes<'tcx, F, R>(sess: &'tcx Session, } /// Run the translation phase to LLVM, after which the AST and analysis can +/// be discarded. pub fn phase_4_translate_to_llvm<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, analysis: ty::CrateAnalysis, incremental_hashes_map: &IncrementalHashesMap) |
