From 2fa1ba3e7ed22e9610ba06618538a7b14f61a9ff Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Mon, 1 May 2017 18:43:46 -0400 Subject: [PATCH] pacify the mercilous tidy --- src/librustc/ty/steal.rs | 10 ++++++++++ src/librustc_driver/driver.rs | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/librustc/ty/steal.rs b/src/librustc/ty/steal.rs index e62872477c4..fd611266f08 100644 --- a/src/librustc/ty/steal.rs +++ b/src/librustc/ty/steal.rs @@ -1,3 +1,13 @@ +// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + use std::cell::{Ref, RefCell}; use std::mem; diff --git a/src/librustc_driver/driver.rs b/src/librustc_driver/driver.rs index f80d6473dcc..83502708584 100644 --- a/src/librustc_driver/driver.rs +++ b/src/librustc_driver/driver.rs @@ -913,7 +913,8 @@ macro_rules! try_with_f { // What we need to run borrowck etc. passes.push_pass(MIR_VALIDATED, mir::transform::qualify_consts::QualifyAndPromoteConstants); - passes.push_pass(MIR_VALIDATED, mir::transform::simplify_branches::SimplifyBranches::new("initial")); + passes.push_pass(MIR_VALIDATED, + mir::transform::simplify_branches::SimplifyBranches::new("initial")); passes.push_pass(MIR_VALIDATED, mir::transform::simplify::SimplifyCfg::new("qualify-consts")); // Optimizations begin. -- 2.44.0