rust/src/test/codegen-units/partitioning/local-drop-glue.rs

46 lines
1.5 KiB
Rust
Raw Normal View History

// ignore-tidy-linelength
// We specify -C incremental here because we want to test the partitioning for
// incremental compilation
2019-12-15 19:53:07 +00:00
// We specify opt-level=0 because `drop_in_place` is `Internal` when optimizing
// compile-flags:-Zprint-mono-items=lazy -Cincremental=tmp/partitioning-tests/local-drop-glue
2019-12-15 19:53:07 +00:00
// compile-flags:-Zinline-in-all-cgus -Copt-level=0
#![allow(dead_code)]
2019-12-15 19:53:07 +00:00
#![crate_type = "rlib"]
2019-12-15 19:53:07 +00:00
//~ MONO_ITEM fn core::ptr[0]::drop_in_place[0]<local_drop_glue::Struct[0]> @@ local_drop_glue-fallback.cgu[External]
struct Struct {
2019-12-15 19:53:07 +00:00
_a: u32,
}
impl Drop for Struct {
2019-12-15 19:53:07 +00:00
//~ MONO_ITEM fn local_drop_glue::{{impl}}[0]::drop[0] @@ local_drop_glue-fallback.cgu[External]
fn drop(&mut self) {}
}
2019-12-15 19:53:07 +00:00
//~ MONO_ITEM fn core::ptr[0]::drop_in_place[0]<local_drop_glue::Outer[0]> @@ local_drop_glue-fallback.cgu[External]
struct Outer {
2019-12-15 19:53:07 +00:00
_a: Struct,
}
2018-05-08 16:10:16 +03:00
//~ MONO_ITEM fn local_drop_glue::user[0] @@ local_drop_glue[External]
2019-12-15 19:53:07 +00:00
pub fn user() {
let _ = Outer { _a: Struct { _a: 0 } };
}
2019-12-15 19:53:07 +00:00
pub mod mod1 {
use super::Struct;
2019-12-15 19:53:07 +00:00
//~ MONO_ITEM fn core::ptr[0]::drop_in_place[0]<local_drop_glue::mod1[0]::Struct2[0]> @@ local_drop_glue-fallback.cgu[External]
struct Struct2 {
_a: Struct,
2019-12-15 19:53:07 +00:00
//~ MONO_ITEM fn core::ptr[0]::drop_in_place[0]<(u32, local_drop_glue::Struct[0])> @@ local_drop_glue-fallback.cgu[Internal]
_b: (u32, Struct),
}
2018-05-08 16:10:16 +03:00
//~ MONO_ITEM fn local_drop_glue::mod1[0]::user[0] @@ local_drop_glue-mod1[External]
2019-12-15 19:53:07 +00:00
pub fn user() {
let _ = Struct2 { _a: Struct { _a: 0 }, _b: (0, Struct { _a: 0 }) };
}
}