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
Let tree_single_nonzero_warnv_p use range information
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr69247.c
blob
b7406e6822329af54e44f1038c8e8b66c1b7ffca
1
/* PR target/69247 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
/* { dg-additional-options "-march=zEC12" { target s390*-*-* } } */
5
6
void
foo
(
short
*);
7
8
void
9
bar
(
short
x
,
int
y
)
10
{
11
if
(
y
)
12
x
=
x
<<
8
| (
unsigned short
)
x
>>
8
;
13
foo
(&
x
);
14
}