repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
delayedfold
/
df-warn-signedunsigned1.C
blob
39b35573483ff266830c4c3ce5d5fec1bb4647b5
1
/* { dg-do compile } */
2
/* { dg-options "-Wall -Werror" } */
3
4
extern int fl;
5
6
#define MAK (fl < 0 ? 1 : (fl ? -1 : 0))
7
8
int foo (int sz)
9
{
10
if (MAK) return 1;
11
return 0;
12
}
13