blob: 6c1d5d977f8c4ec8b40f7c3cd3dbf1c7397df9d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/* 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)
{
asm ("");
x++;
asm ("");
x++;
asm ("");
x++;
asm ("");
x++;
asm ("");
x++;
asm ("");
x++;
asm ("");
x++;
asm ("");
x++;
asm (NOP : : : "memory");
asm (NOP : : : "memory"); /* { dg-final { gdb-test pr56154-2.c:30 "x" "28" } } */
return x;
}
void
test_main (void)
{
if (foo (20) != 28)
abort ();
}
|