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
2018-06-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
pr49706-2.c
blob
30a46c286e0e4ab48bf48b6d5355a44969aec45a
1
/* { dg-do compile } */
2
/* { dg-options "-Wlogical-not-parentheses" } */
3
4
/* Test that we don't warn if both operands of the comparison
5
are negated. */
6
7
#ifndef __cplusplus
8
#define bool _Bool
9
#endif
10
11
bool
r
;
12
13
void
14
same
(
int
a
,
int
b
)
15
{
16
r
= !
a
== !
b
;
17
r
= !!
a
== !!
b
;
18
r
= !!
a
== !
b
;
19
r
= !
a
== !!
b
;
20
}