view gcc/testsuite/c-c++-common/spec-barrier-2.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

/* { dg-do run } */
/* { dg-additional-options "-Wno-volatile" { target c++ } } */

/* Even on targets that don't need the optional failval parameter,
   side-effects on the operand should still be calculated.  */

int x = 3;
volatile int y = 9;

int main ()
{
  int z = __builtin_speculation_safe_value (x, y++);
  if (z != 3 || y != 10)
    __builtin_abort ();
  return 0;
}

/* { dg-prune-output "this target does not define a speculation barrier;" } */