view gcc/testsuite/gcc.dg/lto/20091006-1_0.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-lto-do link } */

typedef void (*fnt) (void);
void __attribute__((noinline)) bar (void) {}
extern inline void __attribute__((gnu_inline)) check3 (void)
{
    bar ();
}
void test (void) 
{
    const fnt pcheck3 = check3;
    pcheck3 ();
}
int main() { return 0; }