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
Adjust scan string for PIE
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr49602.c
blob
bb8eeb0c3320fe0bf6255b7bbb6980de1c9ef3d7
1
/* PR debug/49602 */
2
/* { dg-do compile } */
3
/* { dg-options "-g -O2" } */
4
5
static void
6
foo
(
int
*
x
)
7
{
8
}
9
10
void
11
bar
(
int
*
x
)
12
{
13
int
i
;
14
for
(
i
=
0
;
i
==
1
; ++
i
)
15
x
=
0
;
16
foo
(
x
);
17
}