view gcc/testsuite/gcc.dg/pr36194.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-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;
}