summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2010-10-24 05:31:07 +0000
committerMatt Turner <mattst88@gmail.com>2010-10-24 05:31:07 +0000
commit331c122938c1ebeae5f34a1c71222496a17e9199 (patch)
tree29ea68c749949557877481f3513ccd8271934367
parentc626d4b1794a9597f168f82420a1d3deab4c6642 (diff)
Fix stupid memset screw-up
git-svn-id: svn://mattst88.com/svn/alpha_mmintrin/trunk@6 f7d56953-e76f-4e43-a77e-20d50f6c004e
-rw-r--r--testsuite/ctlz.c4
-rw-r--r--testsuite/maxub8.c4
-rw-r--r--testsuite/maxuw4.c4
-rw-r--r--testsuite/minub8.c4
-rw-r--r--testsuite/minuw4.c4
5 files changed, 10 insertions, 10 deletions
diff --git a/testsuite/ctlz.c b/testsuite/ctlz.c
index 1fc0cf1..6bd91ea 100644
--- a/testsuite/ctlz.c
+++ b/testsuite/ctlz.c
@@ -37,7 +37,7 @@ int main(int argc, char ** argv) {
end = __rpcc();
cix_total += end - start - overhead;
- memset(b, 4096, 0);
+ memset(b, 0, 4096);
}
for (j = 0; j < ITERATIONS; j++) {
@@ -57,7 +57,7 @@ int main(int argc, char ** argv) {
end = __rpcc();
noncix_total += end - start - overhead;
- memset(c, 4096, 0);
+ memset(c, 0, 4096);
}
noncix_total /= ITERATIONS;
diff --git a/testsuite/maxub8.c b/testsuite/maxub8.c
index de2a9e7..ae82a8c 100644
--- a/testsuite/maxub8.c
+++ b/testsuite/maxub8.c
@@ -63,7 +63,7 @@ int main(int argc, char ** argv[]) {
end = __rpcc() - overhead;
no_simd_total += end - start;
- memset(c, 4096, 0);
+ memset(c, 0, 4096);
}
no_simd_total /= ITERATIONS;
@@ -92,7 +92,7 @@ int main(int argc, char ** argv[]) {
end = __rpcc() - overhead;
simd_total += end - start;
- memset(d, 4096, 0);
+ memset(d, 0, 4096);
}
simd_total /= ITERATIONS;
diff --git a/testsuite/maxuw4.c b/testsuite/maxuw4.c
index 3b8e942..06ae2d8 100644
--- a/testsuite/maxuw4.c
+++ b/testsuite/maxuw4.c
@@ -66,7 +66,7 @@ int main(int argc, char ** argv[]) {
end = __rpcc() - overhead;
no_simd_total += end - start;
- memset(c, 4096, 0);
+ memset(c, 0, 4096);
}
no_simd_total /= ITERATIONS;
@@ -95,7 +95,7 @@ int main(int argc, char ** argv[]) {
end = __rpcc() - overhead;
simd_total += end - start;
- memset(d, 4096, 0);
+ memset(d, 0, 4096);
}
simd_total /= ITERATIONS;
diff --git a/testsuite/minub8.c b/testsuite/minub8.c
index 5b54e0a..97cd289 100644
--- a/testsuite/minub8.c
+++ b/testsuite/minub8.c
@@ -66,7 +66,7 @@ int main(int argc, char ** argv[]) {
//printf("%d - %lu nanoseconds\n", j, end - start);
no_simd_total += end - start;
- memset(c, 4096, 0);
+ memset(c, 0, 4096);
}
no_simd_total /= ITERATIONS;
@@ -95,7 +95,7 @@ int main(int argc, char ** argv[]) {
end = __rpcc() - overhead;
simd_total += end - start;
- memset(d, 4096, 0);
+ memset(d, 0, 4096);
}
simd_total /= ITERATIONS;
diff --git a/testsuite/minuw4.c b/testsuite/minuw4.c
index 205d32e..facd326 100644
--- a/testsuite/minuw4.c
+++ b/testsuite/minuw4.c
@@ -63,7 +63,7 @@ int main(int argc, char ** argv[]) {
end = __rpcc() - overhead;
no_simd_total += end - start;
- memset(c, 4096, 0);
+ memset(c, 0, 4096);
}
no_simd_total /= ITERATIONS;
@@ -92,7 +92,7 @@ int main(int argc, char ** argv[]) {
end = __rpcc() - overhead;
simd_total += end - start;
- memset(d, 4096, 0);
+ memset(d, 0, 4096);
}
simd_total /= ITERATIONS;