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
/
20050811-2.c
blob
2f1d48b350e80b9fc5a61315684cd27b84f80f29
1
/* Test whether -dov doesn't crash. */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -dov" } */
4
5
int
foo
(
void
)
6
{
7
return
6
;
8
}
9
10
int
bar
(
int
x
)
11
{
12
if
(
x
<
0
)
13
return
foo
() +
8
;
14
else if
(
x
>
0
)
15
return
2
*
foo
();
16
else
17
return
foo
();
18
}
19
20
// { dg-final { cleanup-rtl-dump "postreload*" } }