From: Keith Wiles Date: Sun, 5 Oct 2014 06:16:22 +0000 (-0500) Subject: mempool: fix build with debug enabled and clang X-Git-Tag: spdx-start~10320 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=0e539d1f9b5c8e8c3102a07cd672aa7d48a444a5;hp=b1a3e0f773db45007717027d03d08fd41818b816;p=dpdk.git mempool: fix build with debug enabled and clang When enabling RTE_LIBRTE_MEMPOOL_DEBUG and compiling with clang compiler an error occurs, because ifdefed code includes push/pop pragmas. Signed-off-by: Keith Wiles Acked-by: Thomas Monjalon --- diff --git a/lib/librte_mempool/rte_mempool.h b/lib/librte_mempool/rte_mempool.h index 95f19f9f73..163de8619b 100644 --- a/lib/librte_mempool/rte_mempool.h +++ b/lib/librte_mempool/rte_mempool.h @@ -313,7 +313,6 @@ static inline void __mempool_write_trailer_cookie(void *obj) */ #ifdef RTE_LIBRTE_MEMPOOL_DEBUG #ifndef __INTEL_COMPILER -#pragma GCC push_options #pragma GCC diagnostic ignored "-Wcast-qual" #endif static inline void __mempool_check_cookies(const struct rte_mempool *mp, @@ -380,7 +379,7 @@ static inline void __mempool_check_cookies(const struct rte_mempool *mp, } } #ifndef __INTEL_COMPILER -#pragma GCC pop_options +#pragma GCC diagnostic error "-Wcast-qual" #endif #else #define __mempool_check_cookies(mp, obj_table_const, n, free) do {} while(0)