view gcc/testsuite/gcc.dg/pr36194.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-do run } */
/* { dg-options "-O2" } */

void abort (void);

__attribute__ ((noinline)) void
f (int i)
{
#if(__SIZEOF_INT__ >= 4)
  if (i != 0x87654321)
#else
  if (i != 0x4321)
#endif
    abort ();
  asm ("");
}

__attribute__ ((noinline)) void
g (long long a)
{
  f (a);
  asm ("");
}

int
main ()
{
  g (0x1234567887654321ll);
  return 0;
}