view gcc/testsuite/gcc.dg/globalalias-2.c @ 131:84e7813d76e9

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

/* { dg-require-alias "" }  */
int test2count;
extern void abort (void);
static
void test(void)
{
  test2count++;
}
__attribute__ ((weak,noinline))
__attribute ((alias("test")))
void test2(void);

void tt() 
{
  int prev = test2count;
  /* This call must bind locally.  */
  test();
  if (test2count == prev)
    abort();
  test2();
 }