summaryrefslogtreecommitdiffstats
path: root/tests/codegen-units/item-collection/non-generic-drop-glue.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/codegen-units/item-collection/non-generic-drop-glue.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/codegen-units/item-collection/non-generic-drop-glue.rs')
-rw-r--r--tests/codegen-units/item-collection/non-generic-drop-glue.rs49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/codegen-units/item-collection/non-generic-drop-glue.rs b/tests/codegen-units/item-collection/non-generic-drop-glue.rs
new file mode 100644
index 000000000..06f76f7db
--- /dev/null
+++ b/tests/codegen-units/item-collection/non-generic-drop-glue.rs
@@ -0,0 +1,49 @@
+//
+// compile-flags:-Zprint-mono-items=eager
+// compile-flags:-Zinline-in-all-cgus
+
+#![deny(dead_code)]
+#![feature(start)]
+
+//~ MONO_ITEM fn std::ptr::drop_in_place::<StructWithDrop> - shim(Some(StructWithDrop)) @@ non_generic_drop_glue-cgu.0[Internal]
+struct StructWithDrop {
+ x: i32
+}
+
+impl Drop for StructWithDrop {
+ //~ MONO_ITEM fn <StructWithDrop as std::ops::Drop>::drop
+ fn drop(&mut self) {}
+}
+
+struct StructNoDrop {
+ x: i32
+}
+
+//~ MONO_ITEM fn std::ptr::drop_in_place::<EnumWithDrop> - shim(Some(EnumWithDrop)) @@ non_generic_drop_glue-cgu.0[Internal]
+enum EnumWithDrop {
+ A(i32)
+}
+
+impl Drop for EnumWithDrop {
+ //~ MONO_ITEM fn <EnumWithDrop as std::ops::Drop>::drop
+ fn drop(&mut self) {}
+}
+
+enum EnumNoDrop {
+ A(i32)
+}
+
+//~ MONO_ITEM fn start
+#[start]
+fn start(_: isize, _: *const *const u8) -> isize {
+ let _ = StructWithDrop { x: 0 }.x;
+ let _ = StructNoDrop { x: 0 }.x;
+ let _ = match EnumWithDrop::A(0) {
+ EnumWithDrop::A(x) => x
+ };
+ let _ = match EnumNoDrop::A(0) {
+ EnumNoDrop::A(x) => x
+ };
+
+ 0
+}