always emit push/pop in statev
authorMatthias Braun <matze@braunis.de>
Fri, 19 Sep 2008 14:20:03 +0000 (14:20 +0000)
committerMatthias Braun <matze@braunis.de>
Fri, 19 Sep 2008 14:20:03 +0000 (14:20 +0000)
[r22126]

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);