From: Michael Beck Date: Thu, 25 Jun 2009 23:02:46 +0000 (+0000) Subject: - moved ansi alias to optimization level 2 (like gcc), effectively removing X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=818a6532e67864270b9a629e5ea9be704c8da346;p=cparser - moved ansi alias to optimization level 2 (like gcc), effectively removing level O4. We loose some benchmarks due to -O3 usage ... [r26189] --- diff --git a/main.c b/main.c index 3db9733..bc0be10 100644 --- a/main.c +++ b/main.c @@ -749,7 +749,6 @@ int main(int argc, char **argv) break; default: case 4: - set_option("strict-aliasing"); /* use_builtins = true; */ /* fallthrough */ case 3: @@ -757,6 +756,7 @@ int main(int argc, char **argv) set_option("if-conv"); /* fallthrough */ case 2: + set_option("strict-aliasing"); set_option("inline"); set_option("deconv"); set_be_option("omitfp");