Reviewers: ,

Description:
Fix compilation for ARMv5TEJ


BUG=
TEST=Compiling for ARMv5TEJ


Please review this at https://chromiumcodereview.appspot.com/10784013/

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

Affected files:
  M src/arm/constants-arm.h


Index: src/arm/constants-arm.h
diff --git a/src/arm/constants-arm.h b/src/arm/constants-arm.h
index e767001e1d8b3f6697720320b85b800bade3da95..5aadc3caeb413bcb6bdcebc874514546f23a867e 100644
--- a/src/arm/constants-arm.h
+++ b/src/arm/constants-arm.h
@@ -56,8 +56,9 @@
 # define CAN_USE_ARMV6_INSTRUCTIONS 1
 #endif

-#if defined(__ARM_ARCH_5T__)            || \
-    defined(__ARM_ARCH_5TE__)           || \
+#if defined(__ARM_ARCH_5T__)             || \
+    defined(__ARM_ARCH_5TE__)            || \
+    defined(__ARM_ARCH_5TEJ__)           || \
     defined(CAN_USE_ARMV6_INSTRUCTIONS)
 # define CAN_USE_ARMV5_INSTRUCTIONS 1
 # define CAN_USE_THUMB_INSTRUCTIONS 1


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

Reply via email to