view gcc/testsuite/gcc.dg/ipa/iinline-attr.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* Verify that simple indirect calls are inlined even when
   attribute __optimize is used.  */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-ipa-inline"  } */

extern void non_existent(int);

static void hooray ()
{
  non_existent (1);
}

__attribute__ ((__optimize__ ("O2")))
static void hiphip (void (*f)())
{
  non_existent (2);
  f ();
}

int test (void)
{
  hiphip (hooray);
  return 0;
}

/* { dg-final { scan-ipa-dump "hooray\[^\\n\]*inline copy in test" "inline" { xfail visium-*-* } } } */
/* Missing back-end support for attribute __optimize__ on Visium.  */