From: Namhyung Kim Date: Thu, 9 Jan 2014 14:00:53 +0000 (+0900) Subject: tools include: Define likely/unlikely in linux/compiler.h X-Git-Tag: upstream/snapshot3+hdmi~3649^2~3^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=835d44b9041e578e3e553a57dfffc7003605c93b;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git tools include: Define likely/unlikely in linux/compiler.h Signed-off-by: Namhyung Kim Cc: Frederic Weisbecker Cc: Ingo Molnar Cc: Jiri Olsa Cc: Namhyung Kim Cc: Steven Rostedt Link: http://lkml.kernel.org/r/1389276059-8829-3-git-send-email-namhyung@kernel.org [ Added the new header to tools/perf/MANIFEST ] Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/include/linux/compiler.h b/tools/include/linux/compiler.h index 0135ccf..fbc6665 100644 --- a/tools/include/linux/compiler.h +++ b/tools/include/linux/compiler.h @@ -27,4 +27,12 @@ # define __weak __attribute__((weak)) #endif +#ifndef likely +# define likely(x) __builtin_expect(!!(x), 1) +#endif + +#ifndef unlikely +# define unlikely(x) __builtin_expect(!!(x), 0) +#endif + #endif /* _TOOLS_LINUX_COMPILER_H */ diff --git a/tools/perf/MANIFEST b/tools/perf/MANIFEST index 3170a7f..285f28f 100644 --- a/tools/perf/MANIFEST +++ b/tools/perf/MANIFEST @@ -4,6 +4,7 @@ tools/lib/traceevent tools/lib/lk tools/lib/symbol/kallsyms.c tools/lib/symbol/kallsyms.h +tools/include/linux/compiler.h include/linux/const.h include/linux/perf_event.h include/linux/rbtree.h