The assembly microkernel is not safe to use on ELFv1
This commit is contained in:
parent
d999688d1a
commit
d2a6285549
|
@ -314,6 +314,8 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
|
||||||
|
|
||||||
if (inc_x == 1) {
|
if (inc_x == 1) {
|
||||||
minf = CABS1(x,0); //index will not be incremented
|
minf = CABS1(x,0); //index will not be incremented
|
||||||
|
|
||||||
|
#if defined(_CALL_ELF) && (_CALL_ELF == 2)
|
||||||
BLASLONG n1 = n & -16;
|
BLASLONG n1 = n & -16;
|
||||||
if (n1 > 0) {
|
if (n1 > 0) {
|
||||||
|
|
||||||
|
@ -321,7 +323,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
|
||||||
i = n1;
|
i = n1;
|
||||||
ix = n1 << 1;
|
ix = n1 << 1;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
while(i < n)
|
while(i < n)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue