From: Götz Lindenmaier Date: Mon, 20 Sep 2004 11:42:33 +0000 (+0000) Subject: flag for strength reduction verbosity X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=24a5cb5505361a74e153577b3bc2b2468b5ce97b;p=libfirm flag for strength reduction verbosity [r3909] --- diff --git a/ir/ir/irflag_t.h b/ir/ir/irflag_t.h index 6293ac1d0..4d6226b96 100644 --- a/ir/ir/irflag_t.h +++ b/ir/ir/irflag_t.h @@ -111,6 +111,14 @@ static INLINE int get_opt_strength_red(void) return libFIRM_opt & OPT_STRENGTH_RED; } +/** Returns verbosity for strength reduction. + * 1: output number of reduced expressions for each run + * 2: output each reduced expression . */ +static INLINE int get_opt_strength_red_verbosity(void) +{ + return 0; // @@@ not yet implemented. +} + /** Returns global constant subexpression elimination setting. */ static INLINE int get_opt_constant_folding(void) {