summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ipa/ipa-ea-05-global-escapes-0.c
blob: cc1c46fc0eb1465e939591d4baf346b9d49f5ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do link } */
/* { dg-options "-flto -fipa-hello-world -fdump-ipa-hello-world" } */
/* { dg-require-effective-target lto } */


#include <stddef.h>

struct astruct_s { _Bool a; _Bool b; _Bool c;};
__attribute__((externally_visible)) struct astruct_s astruct; // This should escape
struct bstruct_s { _Bool a; _Bool b; _Bool c;};
struct bstruct_s bstruct; // This should not escape

int main()
{
  astruct.a = 0;
  bstruct.b = 0;
}


/* { dg-final { scan-wpa-ipa-dump "collected,astruct_s" "hello-world" } } */
/* { dg-final { scan-wpa-ipa-dump "variable bstruct is escaping false" "hello-world" } } */
/* { dg-final { scan-wpa-ipa-dump "collected,bstruct_s" "hello-world" } } */
/* { dg-final { scan-wpa-ipa-dump "variable astruct is escaping true" "hello-world" } } */