From a6c6f76ceb95a0986fd1a36cc30f8241734d20c3 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sat, 13 Mar 2010 14:18:50 +0000 Subject: Fix build with -DNDEBUG in CFLAGS Signed-off-by: Blue Swirl --- tcg/tcg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tcg') diff --git a/tcg/tcg.c b/tcg/tcg.c index e6a1caf..1818868 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -27,7 +27,7 @@ #include "config.h" -#ifndef CONFIG_DEBUG_TCG +#if !defined(CONFIG_DEBUG_TCG) && !defined(NDEBUG) /* define it to suppress various consistency checks (faster) */ #define NDEBUG #endif -- cgit v1.1