repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
guality
/
pr54519-6.c
blob
836ab1f6601cc173f606b559f1c074db9e03d38a
1
/* PR debug/54519 */
2
/* { dg-do run } */
3
/* { dg-options "-g" } */
4
5
#include
"../nop.h"
6
7
static
inline
void
8
f1
(
int
x
,
int
y
)
9
{
10
asm
volatile
(
NOP
);
/* { dg-final { gdb-test 11 "x" "2" } } */
11
asm
volatile
(
NOP
);
/* { dg-final { gdb-test 11 "y" "0" } } */
12
}
13
14
static
inline
void
15
f2
(
int
z
)
16
{
17
f1
(
z
,
0
);
18
f1
(
z
,
1
);
19
}
20
21
int
22
main
()
23
{
24
f2
(
2
);
25
f2
(
3
);
26
return
0
;
27
}