blob: 4804d83c20346f770d4f56b6a0b6c2644636a8b6 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-rtl-dse1" } */
/* { dg-require-effective-target lp64 } */
/* Restricting to 64-bit targets since 32-bit targets return
structures in memory. */
#include <stdint.h>
struct ints { int a, b, c; } foo();
void bar(int a, int b);
void func() {
struct ints s = foo();
bar(s.a, s.b);
}
/* { dg-final { scan-rtl-dump "global deletions = 2" "dse1" } } */
/* { dg-final { cleanup-rtl-dump "dse1" } } */