- moved ansi alias to optimization level 2 (like gcc), effectively removing
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 25 Jun 2009 23:02:46 +0000 (23:02 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 25 Jun 2009 23:02:46 +0000 (23:02 +0000)
  level O4. We loose some benchmarks due to -O3 usage ...

[r26189]

main.c

diff --git a/main.c b/main.c
index 3db9733..bc0be10 100644 (file)
--- 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");