view gcc/testsuite/gcc.dg/ubsan/ipa-icf-1.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-do run } */
/* { dg-skip-if "" { *-*-* } { "*" } { "-O2" } } */
/* { dg-options "-fsanitize=undefined -fipa-icf" } */

__attribute__ ((noinline, noclone))
int f1 (int x, int y)
{
  return x + y;
}

__attribute__ ((noinline, noclone))
int f2 (int x, int y)
{
  return x - y;
}

int
main ()
{
  if (f1 (5, 6) != 11 || f2 (5, 6) != -1)
    __builtin_abort ();
  return 0;
}