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
PR c++/67273
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
Wtautological-compare-2.c
blob
260d9f7d57e1a73deb1b1fd9a7a2e9747e610a27
1
/* PR bootstrap/67030 */
2
/* { dg-do compile } */
3
/* { dg-options "-Wtautological-compare" } */
4
5
#define A a
6
#define B A
7
#define FOO (A > B)
8
9
void
10
fn1
(
int
a
)
11
{
12
if
(
FOO
);
13
}