Skip to content

sw: Fix warning in kmp.c #134

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions sw/snRuntime/src/omp/kmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ void __kmpc_for_static_init_4(ident_t *loc, kmp_int32 gtid,
kmp_int32 globalUpper = *pupper;

KMP_PRINTF(50,
"__kmpc_for_static_init_4 gtid %d schedtype %d plast %#x
p[%#x, "
"__kmpc_for_static_init_4 gtid %d schedtype %d plast %#x"
"p[%#x, "
"%#x, %#x] incr %d chunk %d\n",
gtid, sched, (uint32_t)plastiter, (uint32_t)plower,
(uint32_t)pupper, (uint32_t)pstride, incr, chunk);
Expand Down Expand Up @@ -287,8 +287,7 @@ void __kmpc_for_static_init_4(ident_t *loc, kmp_int32 gtid,
}

KMP_PRINTF(10,
"__kmpc_for_static_init_4 plast %4d p[l %4d, u %4d, i %4d, str
"
"__kmpc_for_static_init_4 plast %4d p[l %4d, u %4d, i %4d, str"
"%4d] chunk %d\n",
*plastiter, *plower, *pupper, incr, *pstride, chunk);
}
Expand Down
Loading