Browse Source

[ZARCH] Undo the last commit

tags/v0.3.6^2
maamountki GitHub 7 years ago
parent
commit
04873bb174
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 0 additions and 12 deletions
  1. +0
    -1
      kernel/zarch/icamax.c
  2. +0
    -1
      kernel/zarch/icamin.c
  3. +0
    -1
      kernel/zarch/idamax.c
  4. +0
    -1
      kernel/zarch/idamin.c
  5. +0
    -1
      kernel/zarch/idmax.c
  6. +0
    -1
      kernel/zarch/idmin.c
  7. +0
    -1
      kernel/zarch/isamax.c
  8. +0
    -1
      kernel/zarch/isamin.c
  9. +0
    -1
      kernel/zarch/ismax.c
  10. +0
    -1
      kernel/zarch/ismin.c
  11. +0
    -1
      kernel/zarch/izamax.c
  12. +0
    -1
      kernel/zarch/izamin.c

+ 0
- 1
kernel/zarch/icamax.c View File

@@ -283,7 +283,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
}
else
{
max = 0;
maxf = CABS1(x,0);
ix += 2;
i++;


+ 0
- 1
kernel/zarch/icamin.c View File

@@ -283,7 +283,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
}
else
{
min = 0;
minf = CABS1(x,0);
ix += 2;
i++;


+ 0
- 1
kernel/zarch/idamax.c View File

@@ -206,7 +206,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
max = 0;
maxf = ABS(x[0]);
i++;
}


+ 0
- 1
kernel/zarch/idamin.c View File

@@ -206,7 +206,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
min = 0;
minf = ABS(x[0]);
i++;
}


+ 0
- 1
kernel/zarch/idmax.c View File

@@ -182,7 +182,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
max = 0;
maxf = x[0];
i++;
}


+ 0
- 1
kernel/zarch/idmin.c View File

@@ -182,7 +182,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
min = 0;
minf = x[0];
i++;
}


+ 0
- 1
kernel/zarch/isamax.c View File

@@ -249,7 +249,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
max = 0;
maxf = ABS(x[0]);
i++;
}


+ 0
- 1
kernel/zarch/isamin.c View File

@@ -249,7 +249,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
min = 0;
minf = ABS(x[0]);
i++;
}


+ 0
- 1
kernel/zarch/ismax.c View File

@@ -225,7 +225,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
max = 0;
maxf = x[0];
i++;
}


+ 0
- 1
kernel/zarch/ismin.c View File

@@ -225,7 +225,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x) {
}
else
{
min = 0;
minf = x[0];
i++;
}


+ 0
- 1
kernel/zarch/izamax.c View File

@@ -204,7 +204,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
}
else
{
max = 0;
maxf = CABS1(x,0);
ix += 2;
i++;


+ 0
- 1
kernel/zarch/izamin.c View File

@@ -204,7 +204,6 @@ BLASLONG CNAME(BLASLONG n, FLOAT *x, BLASLONG inc_x)
}
else
{
min = 0;
minf = CABS1(x,0);
ix += 2;
i++;


Loading…
Cancel
Save