blob: 1a4097b629da7c12a01e9d8edb0669a7d111e376 [file] [log] [blame]
/* { dg-do run { target lto } }
* { dg-options "-std=c23 -flto -O2" }
*/
/* These tests check that compatible definitions of
tagged types can alias the original definitions
with LTO. */
struct foo { int x; };
int test_foo(struct foo* a, void* b)
{
a->x = 1;
struct foo { int x; }* p = b;
p->x = 2;
return a->x;
}
enum bar { A = 1, B = 3 };
int test_bar(enum bar* a, void* b)
{
*a = A;
enum bar { A = 1, B = 3 }* p = b;
*p = B;
return *a;
}
int main()
{
struct foo y;
if (2 != test_foo(&y, &y))
__builtin_abort();
enum bar z;
if (B != test_bar(&z, &z))
__builtin_abort();
return 0;
}