Author: [email protected]
Date: Tue May 19 13:12:50 2009
New Revision: 2001

Modified:
    branches/bleeding_edge/src/arm/macro-assembler-arm.cc

Log:
 From joel.stan:
The preprocessor defines check for v5t and v5te.  This patch adds v7 and
v7-a which provide support for -march=armv7 and -mcpu=cortex-a8
respectively.
This is to support my work compiling chromium on arm, see
http://crbug.com/12028
http://codereview.chromium.org/115509


Modified: branches/bleeding_edge/src/arm/macro-assembler-arm.cc
==============================================================================
--- branches/bleeding_edge/src/arm/macro-assembler-arm.cc       (original)
+++ branches/bleeding_edge/src/arm/macro-assembler-arm.cc       Tue May 19  
13:12:50 2009
@@ -58,7 +58,10 @@
  // We do not support thumb inter-working with an arm architecture not  
supporting
  // the blx instruction (below v5t)
  #if defined(__THUMB_INTERWORK__)
-#if !defined(__ARM_ARCH_5T__) && !defined(__ARM_ARCH_5TE__)
+#if !defined(__ARM_ARCH_5T__) && \
+  !defined(__ARM_ARCH_5TE__) &&  \
+  !defined(__ARM_ARCH_7A__) &&   \
+  !defined(__ARM_ARCH_7__)
  // add tests for other versions above v5t as required
  #error "for thumb inter-working we require architecture v5t or above"
  #endif

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

Reply via email to