summaryrefslogtreecommitdiff
path: root/testsuite/ctlz.c
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 /testsuite/ctlz.c
parentc626d4b1794a9597f168f82420a1d3deab4c6642 (diff)
Fix stupid memset screw-up
git-svn-id: svn://mattst88.com/svn/alpha_mmintrin/trunk@6 f7d56953-e76f-4e43-a77e-20d50f6c004e
Diffstat (limited to 'testsuite/ctlz.c')
-rw-r--r--testsuite/ctlz.c4
1 files changed, 2 insertions, 2 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;