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
Require target lra in gcc.dg/pr108095.c
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
Wtautological-compare-7.c
blob
1dab5877f3b9a7e25bc7d7f1004a10d69f680de3
1
/* PR c/82437 */
2
/* { dg-do compile { target int32 } } */
3
/* { dg-options "-Wtautological-compare" } */
4
5
int
6
foo
(
unsigned long long int
x
)
7
{
8
if
((
x
|
0x190000000
ULL
) != -
1879048192
)
/* { dg-bogus "bitwise comparison always evaluates to" } */
9
return
0
;
10
return
1
;
11
}