diff options
| author | Ariel Ben-Yehuda <ariel.byd@gmail.com> | 2017-04-07 01:00:53 +0300 |
|---|---|---|
| committer | Ariel Ben-Yehuda <ariel.byd@gmail.com> | 2017-04-08 22:46:50 +0300 |
| commit | 69797986879f12db067f5cd8fb89c193548b04f5 (patch) | |
| tree | 1049333da5e68e1609d4fe9d00e2b9f9d50c8651 /src/test | |
| parent | 44855a4cef3e83c76c386fdcf034447a8ee128e4 (diff) | |
| download | rust-69797986879f12db067f5cd8fb89c193548b04f5.tar.gz rust-69797986879f12db067f5cd8fb89c193548b04f5.zip | |
borrowck::mir::dataflow: ignore unwind edges of empty drops
This avoids creating drop flags in many unnecessary situations. Fixes #41110.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/mir-opt/issue-41110.rs | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/test/mir-opt/issue-41110.rs b/src/test/mir-opt/issue-41110.rs new file mode 100644 index 00000000000..fec635b3abf --- /dev/null +++ b/src/test/mir-opt/issue-41110.rs @@ -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 |
