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