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
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
g++.dg
/
opt
/
fold2.C
blob
95063d7ab0b171882432ab5801a1bd52c1b3b736
1
// PR optimization/14669
2
// { dg-do run }
3
// { dg-options "-O2" }
4
5
extern "C" void abort (void);
6
extern "C" void exit (int);
7
8
enum ActionType { EE=-1, E0=0, E1, E2 };
9
10
int main(void)
11
{
12
ActionType t = E0;
13
14
if (E1 <= t && t <= E2)
15
abort ();
16
17
exit (0);
18
}
19