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
Add qdf24xx base tuning support.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
vrp43.c
blob
f475354dcfe1e8210fed27e6c4f63cd086dd9e95
1
/* { dg-do run } */
2
/* { dg-options "-O2" } */
3
4
int
__attribute__
((
noinline
))
5
foo
(
int
i
)
6
{
7
if
(
i
!=
0
)
8
{
9
char
c
= (
char
)
i
;
10
return
c
!=
0
;
11
}
12
return
0
;
13
}
14
15
extern
void
abort
(
void
);
16
17
int
main
()
18
{
19
if
(
foo
(
0xff00
))
20
abort
();
21
return
0
;
22
}