blob: 095dce9f656d55649d14433e3d45bde5e3485e56 [file] [log] [blame]
/* PR debug/56154 */
/* { dg-do run } */
/* { dg-options "-g" } */
/* { dg-additional-sources "pr56154-aux.c" } */
#include "../nop.h"
extern void abort (void);
__attribute__((noinline, noclone)) int
foo (int x)
{
x++;
x++;
x++;
x++;
x++;
x++;
x++;
x++;
asm (NOP : : : "memory");
asm (NOP : : : "memory"); /* { dg-final { gdb-test pr56154-3.c:22 "x" "28" } } */
return x;
}
void
test_main (void)
{
if (foo (20) != 28)
abort ();
}