panic() instead of assert(0).
[libfirm] / ir / stat / statev.c
index 8ca9a0f..b628ad1 100644 (file)
@@ -104,7 +104,7 @@ static INLINE int key_matches(const char *key)
 
 void stat_ev_printf(char ev, const char *key, const char *fmt, ...)
 {
-       if (!key_matches(key))
+       if (ev == 'E' && !key_matches(key))
                return;
 
        mfprintf(stat_ev_file, "%c;%s", ev, key);