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
/
20001228-1.c
blob
49aec961748f24b6a75c0cf3a6ab26b1acbfe751
1
/* { dg-do compile } */
2
/* { dg-options "-ffast-math -O2" } */
3
4
typedef
struct
5
{
6
float
vs_data
[
75
],
vs_peak
[
75
],
vs_peak_speed
[
75
];
7
int
vs_refresh_delay
;
8
int
vs_doublesize
;
9
}
Vis
;
10
11
void
vis_timeout_func
(
Vis
*
vis
)
12
{
13
if
(
vis
->
vs_peak
[
0
] <
0.0
)
14
vis
->
vs_peak
[
0
] =
0.0
;
15
}
16