diff options
| author | Ralf Jung <post@ralfj.de> | 2020-01-19 10:09:52 -0600 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2020-01-19 10:09:52 -0600 |
| commit | b77a7997a866573bdf835f9dc00012877d87a22f (patch) | |
| tree | f0edfbdb37459a9ddabc2b87733a3835e7a0f0bf /src/test/codegen-units/partitioning/local-drop-glue.rs | |
| parent | 6106758fcee3a08da04a395c1af9fbc2e7c2c816 (diff) | |
| download | rust-b77a7997a866573bdf835f9dc00012877d87a22f.tar.gz rust-b77a7997a866573bdf835f9dc00012877d87a22f.zip | |
adjust codegen-units tests
Diffstat (limited to 'src/test/codegen-units/partitioning/local-drop-glue.rs')
| -rw-r--r-- | src/test/codegen-units/partitioning/local-drop-glue.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/codegen-units/partitioning/local-drop-glue.rs b/src/test/codegen-units/partitioning/local-drop-glue.rs index 938d4ffb693..366af4d4c38 100644 --- a/src/test/codegen-units/partitioning/local-drop-glue.rs +++ b/src/test/codegen-units/partitioning/local-drop-glue.rs @@ -7,7 +7,7 @@ #![allow(dead_code)] #![crate_type="rlib"] -//~ MONO_ITEM fn core::ptr[0]::real_drop_in_place[0]<local_drop_glue::Struct[0]> @@ local_drop_glue[Internal] local_drop_glue-mod1[Internal] +//~ MONO_ITEM fn core::ptr[0]::drop_in_place[0]<local_drop_glue::Struct[0]> @@ local_drop_glue[Internal] local_drop_glue-mod1[Internal] struct Struct { _a: u32 } @@ -17,7 +17,7 @@ impl Drop for Struct { fn drop(&mut self) {} } -//~ MONO_ITEM fn core::ptr[0]::real_drop_in_place[0]<local_drop_glue::Outer[0]> @@ local_drop_glue[Internal] +//~ MONO_ITEM fn core::ptr[0]::drop_in_place[0]<local_drop_glue::Outer[0]> @@ local_drop_glue[Internal] struct Outer { _a: Struct } @@ -36,10 +36,10 @@ pub mod mod1 { use super::Struct; - //~ MONO_ITEM fn core::ptr[0]::real_drop_in_place[0]<local_drop_glue::mod1[0]::Struct2[0]> @@ local_drop_glue-mod1[Internal] + //~ MONO_ITEM fn core::ptr[0]::drop_in_place[0]<local_drop_glue::mod1[0]::Struct2[0]> @@ local_drop_glue-mod1[Internal] struct Struct2 { _a: Struct, - //~ MONO_ITEM fn core::ptr[0]::real_drop_in_place[0]<(u32, local_drop_glue::Struct[0])> @@ local_drop_glue-mod1[Internal] + //~ MONO_ITEM fn core::ptr[0]::drop_in_place[0]<(u32, local_drop_glue::Struct[0])> @@ local_drop_glue-mod1[Internal] _b: (u32, Struct), } |
