view gcc/testsuite/gcc.dg/lto/pr83388_0.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
line wrap: on
line source

/* { dg-lto-do link } */
/* { dg-lto-options { { -O2 -flto -fsanitize=null } { -O0 -flto -fsanitize=null } } } */
/* { dg-extra-ld-options { -fno-sanitize=null -r -nostdlib -flinker-output=nolto-rel } } */

enum { a } e(void);
struct C {
    int d;
} c;
long f;
void g(long);
static void i(_Bool h) {
    struct C *a = ({ ({ &c; }); });
    if (e()) {
	int b = a->d;
	g(f);
    }
}
void j(void) { i(a); }