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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr48822.c
blob
b619f369b4fb1973afa8bf58b37f5df749889d13
1
/* { dg-do compile } */
2
3
void
foo
(
int
*,
int
*);
4
int
bar
()
5
{
6
int
a
=
0
;
7
int
b
=
0
;
8
if
(
b
!=
0
)
9
{
10
int
ax
=
a
;
11
int
bx
=
b
;
12
while
(
bx
!=
0
)
13
{
14
int
tem
=
ax
%
bx
;
15
ax
=
bx
;
16
bx
=
tem
;
17
}
18
}
19
foo
(&
a
, &
b
);
20
}