summaryrefslogtreecommitdiff
path: root/testsuite/maxub8.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/maxub8.c')
-rw-r--r--testsuite/maxub8.c4
1 files changed, 2 insertions, 2 deletions
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;