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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.dg
/
20040331-1.c
blob
4cef3d3297aaf105bed6e01f378a65805533d2e1
1
/* { dg-do run } */
2
/* { dg-options "-O2 -fwrapv" } */
3
4
extern
void
abort
(
void
);
5
extern
void
exit
(
int
);
6
7
int
8
main
(
void
)
9
{
10
struct
{
int
count
:
2
; }
s
= { -
2
};
11
while
(
s
.
count
-- != -
2
)
12
abort
();
13
exit
(
0
);
14
}