disabled show after showgraph, as it is (or was?) buggy
[libfirm] / ir / common / error.c
index fd251a1..4fe7f60 100644 (file)
 #include <stdio.h>
 #include <stdarg.h>
 #include "error.h"
+#include "irprintf.h"
 
 NORETURN panic(const char *fmt, ...) {
        va_list ap;
 
        fputs("libFirm panic: ", stderr);
        va_start(ap, fmt);
-       vfprintf(stderr, fmt, ap);
+       ir_vfprintf(stderr, fmt, ap);
        va_end(ap);
        putc('\n', stderr);
        abort();