[ZARCH] Fix bug in max/min functions

This commit is contained in:
maamountki 2019-01-29 17:59:38 +02:00 committed by GitHub
parent dc4d3bccd5
commit fcd814a8d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 8 additions and 8 deletions

View File

@ -198,7 +198,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
if (n1 > 0) {
maxf = camax_kernel_32(n1, x);
ix = n1 * 2;
i = n1;
}
else

View File

@ -198,7 +198,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
if (n1 > 0) {
minf = camin_kernel_32(n1, x);
ix = n1 * 2;
i = n1;
}
else

View File

@ -280,7 +280,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
if (n1 > 0) {
max = icamax_kernel_32(n1, x, &maxf);
ix = n1 * 2;
i = n1;
}
else

View File

@ -280,7 +280,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
if (n1 > 0) {
min = icamin_kernel_32(n1, x, &minf);
ix = n1 * 2;
i = n1;
}
else

View File

@ -199,7 +199,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
if (n1 > 0) {
max = izamax_kernel_16(n1, x, &maxf);
ix = n1 * 2;
i = n1;
}
else

View File

@ -199,7 +199,7 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
if (n1 > 0) {
min = izamin_kernel_16(n1, x, &minf);
ix = n1 * 2;
i = n1;
}
else

View File

@ -152,7 +152,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
if (n1 > 0) {
maxf = zamax_kernel_16(n1, x);
ix = n1 * 2;
i = n1;
}
else

View File

@ -152,7 +152,7 @@ FLOAT CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
if (n1 > 0) {
minf = zamin_kernel_16(n1, x);
ix = n1 * 2;
i = n1;
}
else