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
Small ChangeLog tweak.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr77677.c
blob
af3f0b0af09f858c87f15fbaa7649f3030c5da11
1
/* PR ipa/77677 */
2
/* { dg-do compile } */
3
4
int
a
,
b
;
5
6
static void
fn1
(
short
p1
)
7
{
8
a
= -
p1
;
9
if
(
a
||
b
)
10
__builtin_printf
(
"%d
\n
"
,
b
);
11
}
12
13
int
main
()
14
{
15
int
c
[] = {
40000
};
16
fn1
(
c
[
0
]);
17
return
0
;
18
}