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