From: Matthias Braun Date: Fri, 19 Sep 2008 14:20:03 +0000 (+0000) Subject: always emit push/pop in statev X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=e2dbd3036813b7fb746249213cd84472082d5ab7;p=libfirm always emit push/pop in statev [r22126] --- diff --git a/ir/stat/statev.c b/ir/stat/statev.c index 8ca9a0f02..b628ad1f9 100644 --- a/ir/stat/statev.c +++ b/ir/stat/statev.c @@ -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);