X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fcommon%2Fdebug.c;h=efbe37464d6f0150bfb436629a2fb95c3e3ff4b0;hb=0887d4a59b29ff9c398d2961dce95977fd7efe9c;hp=b69293ff4f73f99367f845fa3116eef86a85f878;hpb=e47dcaa53a918b622565ba18cdefb9786944d919;p=libfirm diff --git a/ir/common/debug.c b/ir/common/debug.c index b69293ff4..efbe37464 100644 --- a/ir/common/debug.c +++ b/ir/common/debug.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -42,28 +42,6 @@ #include "obst.h" #include "set.h" -#ifdef WITH_LIBCORE - -#include "irargs_t.h" - -static void firm_dbg_default_printer(struct obstack *obst, const char *fmt, va_list args) -{ - static lc_arg_env_t *env = NULL; - - if(!env) - env = firm_get_arg_env(); - - lc_evoprintf(env, obst, fmt, args); - -} - -firm_dbg_module_t *firm_dbg_register(const char *name) -{ - return lc_dbg_register_with_printer(name, firm_dbg_default_printer); -} - -#else - static struct obstack dbg_obst; static set *module_set; @@ -83,6 +61,8 @@ static int module_cmp(const void *p1, const void *p2, size_t size) { const firm_dbg_module_t *m1 = p1; const firm_dbg_module_t *m2 = p2; + (void) size; + return strcmp(m1->name, m2->name); } @@ -187,11 +167,9 @@ void _firm_dbg_print(const firm_dbg_module_t *mod, unsigned mask, const char *fm } } -#endif /* WITH_LIBCORE */ - #else /* DEBUG_libfirm */ /* some picky compiler don't allow empty files */ -static int dummy; +static int __attribute__((unused)) dummy; #endif /* DEBUG_libfirm */