From 6f996fb00afc2ae14904b46fb21e2968b5faf4f7 Mon Sep 17 00:00:00 2001 From: Sebastian Hack Date: Mon, 10 Sep 2007 19:08:44 +0000 Subject: [PATCH] Just made a warning go away when building optimized version of the compiler [r15732] --- ir/ir/irprintf_t.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ir/ir/irprintf_t.h b/ir/ir/irprintf_t.h index b5a977652..7d27249f9 100644 --- a/ir/ir/irprintf_t.h +++ b/ir/ir/irprintf_t.h @@ -39,10 +39,13 @@ static INLINE void ir_debugf(const char *fmt, ...) { + (void) fmt; } static INLINE void ir_fdebugf(FILE *f, const char *fmt, ...) { + (void) f; + (void) fmt; } #endif -- 2.20.1