From 818a6532e67864270b9a629e5ea9be704c8da346 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Thu, 25 Jun 2009 23:02:46 +0000 Subject: [PATCH] - moved ansi alias to optimization level 2 (like gcc), effectively removing level O4. We loose some benchmarks due to -O3 usage ... [r26189] --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.20.1