You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
spec2k6 456.hmmer build fail.
one of the errors can be reproduce by the following code:
double sre_random(void)
{
static long rnd1;
static long rnd2;
static long tbl[64];
int i;
for (i = 0; i < 64; i++) {
tbl[i] = rnd1-rnd2;
if (tbl[i] < 0)
tbl[i] += 1;
}
return 0;
}
1. the be will crash if compile the code like that:
```
int sre_random(void)
{
long rnd1;
static long tbl[64];
int i;
for (i = 0; i < 64; i++) {
tbl[i] = rnd1;
if (tbl[i] < 0)
tbl[i] += 0;
}
return 0;
}
```
Signed-off-by: Zhijin Zeng <[email protected]>
spec2k6 456.hmmer build fail.
one of the errors can be reproduce by the following code:
error:
The text was updated successfully, but these errors were encountered: