view gcc/testsuite/gcc.dg/lto/20090213_0.c @ 111:04ced10e8804

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

/* { dg-lto-do run } */
#include <stdio.h>

extern int foo (int);

int
main()
{
  int x = foo (10);
  printf ("x is %d, foo is at 0x%p\n", x, foo);
  return 0;
}