From 28a24ba15f436422c3c8e16341de47e9989184a4 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Sun, 31 Aug 2008 22:13:12 +0000 Subject: [PATCH] Handle -fno-strength-reduce. [r21606] --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index a4eafe7..9d7c04e 100644 --- a/main.c +++ b/main.c @@ -652,7 +652,7 @@ int main(int argc, char **argv) } else if (streq(opt, "omit-frame-pointer")) { set_be_option(truth_value ? "omitfp" : "omitfp=no"); } else if (streq(opt, "strength-reduce")) { - firm_option("strength-red"); + firm_option(truth_value ? "strength-red" : "no-strength-red"); } else if (streq(opt, "fast-math") || streq(opt, "jump-tables") || streq(opt, "unroll-loops") || -- 2.20.1