Just made a warning go away when building optimized version of the compiler
authorSebastian Hack <hack@ipd.info.uni-karlsruhe.de>
Mon, 10 Sep 2007 19:08:44 +0000 (19:08 +0000)
committerSebastian Hack <hack@ipd.info.uni-karlsruhe.de>
Mon, 10 Sep 2007 19:08:44 +0000 (19:08 +0000)
[r15732]

ir/ir/irprintf_t.h

index b5a9776..7d27249 100644 (file)
 
 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