Skip to content
Snippets Groups Projects
Commit 8c6cd931 authored by Alexander Potapenko's avatar Alexander Potapenko
Browse files

[libsanitizer] Drive-by fix for -Wempty-body in sanitizer_common_syscalls.inc

This makes the file consistently use { } around the if statements containing the PRE_/POST_ macros.

llvm-svn: 187797
parent d2a06002
No related branches found
No related tags found
No related merge requests found
......@@ -145,29 +145,41 @@ POST_SYSCALL(waitpid)(long res, int pid, int *status, int options) {
}
PRE_SYSCALL(clock_gettime)(int clk_id, struct sanitizer_kernel_timespec *tp) {
if (tp) PRE_WRITE(tp, sizeof(*tp));
if (tp) {
PRE_WRITE(tp, sizeof(*tp));
}
}
POST_SYSCALL(clock_gettime)(long res, int clk_id,
struct sanitizer_kernel_timespec *tp) {
if (res == 0 && tp) POST_WRITE(tp, sizeof(*tp));
if (res == 0 && tp) {
POST_WRITE(tp, sizeof(*tp));
}
}
PRE_SYSCALL(clock_getres)(int clk_id, struct sanitizer_kernel_timespec *tp) {
if (tp) PRE_WRITE(tp, sizeof(*tp));
if (tp) {
PRE_WRITE(tp, sizeof(*tp));
}
}
POST_SYSCALL(clock_getres)(long res, int clk_id,
struct sanitizer_kernel_timespec *tp) {
if (res == 0 && tp) POST_WRITE(tp, sizeof(*tp));
if (res == 0 && tp) {
POST_WRITE(tp, sizeof(*tp));
}
}
PRE_SYSCALL(read)(unsigned int fd, void *buf, uptr count) {
if (buf) PRE_WRITE(buf, count);
if (buf) {
PRE_WRITE(buf, count);
}
}
POST_SYSCALL(read)(long res, unsigned int fd, void *buf, uptr count) {
if (res > 0 && buf) POST_WRITE(buf, res);
if (res > 0 && buf) {
POST_WRITE(buf, res);
}
}
} // extern "C"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment