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
* cfgloopmanip.c (duplicate_loop_to_header_edge): Cleanup profile
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
enum4.C
blob
b8b1209d32617c28b750d7e0b18433c5076f8983
1
// { dg-do assemble }
2
// { dg-options "-Wall" }
3
4
enum tristate { no = -1, maybe, yes };
5
6
tristate
7
definite_tristate (int truth)
8
{
9
return (truth) ? yes : no;
10
}