Commit 3a7c6964 authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

Revert accidental part of http://codereview.chromium.org/6123007/

6281 that causes a performance regression.
Review URL: http://codereview.chromium.org/6106014

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6287 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 5be396cb
......@@ -72,6 +72,7 @@ ANDROID_FLAGS = ['-march=armv7-a',
'-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 @@ LIBRARY_FLAGS = {
}
},
'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']
}
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment