]> git.lizzy.rs Git - rust.git/commitdiff
pacify the mercilous tidy
authorNiko Matsakis <niko@alum.mit.edu>
Mon, 1 May 2017 22:43:46 +0000 (18:43 -0400)
committerNiko Matsakis <niko@alum.mit.edu>
Tue, 2 May 2017 20:21:56 +0000 (16:21 -0400)
src/librustc/ty/steal.rs
src/librustc_driver/driver.rs

index e62872477c47c15f42e2c8b8599af3d1e0a9d049..fd611266f0836b65fe2c62e6036efcb870e83cdc 100644 (file)
@@ -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 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, 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;
 
index f80d6473dcc540109ae1c6025f4a6691f9adcf31..83502708584273b38752abe83a736fe7c5024809 100644 (file)
@@ -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.