From: ulan@chromium.org Date: Wed, 24 Oct 2012 12:38:24 +0000 (+0000) Subject: Define CAN_USE_ARMV7_INSTRUCTIONS if armv7 gyp flag is set. X-Git-Tag: upstream/4.7.83~15783 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8f0501f5098f80f92c3c06b6d92eea0fe5f1d0b1;p=platform%2Fupstream%2Fv8.git Define CAN_USE_ARMV7_INSTRUCTIONS if armv7 gyp flag is set. R=jkummerow@chromium.org Review URL: https://chromiumcodereview.appspot.com/11274008 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12807 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/build/common.gypi b/build/common.gypi index 78888b8..97f0aae 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -134,6 +134,11 @@ 'V8_TARGET_ARCH_ARM', ], 'conditions': [ + ['armv7==1', { + 'defines': [ + 'CAN_USE_ARMV7_INSTRUCTIONS=1', + ], + }], [ 'v8_can_use_unaligned_accesses=="true"', { 'defines': [ 'CAN_USE_UNALIGNED_ACCESSES=1',