Reviewers: Søren Gjesse,

Description:
Revert accidental part of http://codereview.chromium.org/6123007/
6281 that causes a performance regression.

Please review this at http://codereview.chromium.org/6106014/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     SConstruct


Index: SConstruct
===================================================================
--- SConstruct  (revision 6286)
+++ SConstruct  (working copy)
@@ -72,6 +72,7 @@
                  '-fgcse-after-reload',
                  '-frerun-cse-after-loop',
                  '-frename-registers',
+                 '-fomit-frame-pointer',
                  '-finline-limit=64',
                  '-DCAN_USE_VFP_INSTRUCTIONS=1',
                  '-DCAN_USE_ARMV7_INSTRUCTIONS=1',
@@ -142,10 +143,10 @@
       }
     },
     'mode:release': {
-      'CCFLAGS':      ['-O2', '-fdata-sections',
+      'CCFLAGS':      ['-O3', '-fomit-frame-pointer', '-fdata-sections',
                        '-ffunction-sections'],
       'os:android': {
-        'CCFLAGS':    ['-mthumb'],
+        'CCFLAGS':    ['-mthumb', '-Os'],
         'CPPDEFINES': ['SK_RELEASE', 'NDEBUG']
       }
     },


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to