forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#41148 - arielb1:dead-unwind, r=nagisa
borrowck::mir::dataflow: ignore unwind edges of empty drops This avoids creating drop flags in many unnecessary situations. Fixes rust-lang#41110. r? @nagisa beta-nominating because regression. However, that is merely a small perf regression and codegen changes are always risky, so we might let this slide for 1.17.
- Loading branch information
Showing
4 changed files
with
174 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// Copyright 2017 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. | ||
|
||
// check that we don't emit multiple drop flags when they are not needed. | ||
|
||
fn main() { | ||
let x = S.other(S.id()); | ||
} | ||
|
||
pub fn test() { | ||
let u = S; | ||
let mut v = S; | ||
drop(v); | ||
v = u; | ||
} | ||
|
||
struct S; | ||
impl Drop for S { | ||
fn drop(&mut self) { | ||
} | ||
} | ||
|
||
impl S { | ||
fn id(self) -> Self { self } | ||
fn other(self, s: Self) {} | ||
} | ||
|
||
// END RUST SOURCE | ||
// START rustc.node4.ElaborateDrops.after.mir | ||
// let mut _2: S; | ||
// let mut _3: (); | ||
// let mut _4: S; | ||
// let mut _5: S; | ||
// let mut _6: bool; | ||
// | ||
// bb0: { | ||
// END rustc.node4.ElaborateDrops.after.mir | ||
// START rustc.node13.ElaborateDrops.after.mir | ||
// let mut _2: (); | ||
// let mut _4: (); | ||
// let mut _5: S; | ||
// let mut _6: S; | ||
// let mut _7: bool; | ||
// | ||
// bb0: { | ||
// END rustc.node13.ElaborateDrops.after.mir |