summaryrefslogtreecommitdiffstats
path: root/include/compiler.h
diff options
context:
space:
mode:
authorJeroen Hofstee <jeroen@myspectrum.nl>2014-09-17 20:33:48 +0200
committerTom Rini <trini@ti.com>2014-09-24 18:30:29 -0400
commit87f13aa00d0279fcc96530404c3a104eb4cb1672 (patch)
tree79cf6940ba0bfa3ef1ed6ff2930d4c3799e8aa18 /include/compiler.h
parent93d3232d9607669f33a34d3a552b24e1d727413b (diff)
downloadblackbird-obmc-uboot-87f13aa00d0279fcc96530404c3a104eb4cb1672.tar.gz
blackbird-obmc-uboot-87f13aa00d0279fcc96530404c3a104eb4cb1672.zip
compiler.h: remove duplicated uninitialized_var
Since clang has a different definition for uninitialized_var it will complain that it is redefined in include/compiler.h. Since these are already defined in linux/compiler.h just remove this instance. Cc: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Tom Rini <trini@ti.com> Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl>
Diffstat (limited to 'include/compiler.h')
-rw-r--r--include/compiler.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/compiler.h b/include/compiler.h
index 9afc11be19..14519163a3 100644
--- a/include/compiler.h
+++ b/include/compiler.h
@@ -129,9 +129,6 @@ typedef unsigned long int uintptr_t;
#endif /* USE_HOSTCC */
-/* compiler options */
-#define uninitialized_var(x) x = x
-
#define likely(x) __builtin_expect(!!(x), 1)
#define unlikely(x) __builtin_expect(!!(x), 0)
OpenPOWER on IntegriCloud