Title: [121927] trunk/Source/WTF
Revision
121927
Author
fpi...@apple.com
Date
2012-07-05 16:31:00 -0700 (Thu, 05 Jul 2012)

Log Message

INLINE_ARM_FUNCTION(thingy) should make thingy be thumb2 if we're using thumb2
https://bugs.webkit.org/show_bug.cgi?id=90644

Reviewed by Mark Hahnenberg.
        
Fix breakage introduced in http://trac.webkit.org/changeset/121885

* wtf/InlineASM.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (121926 => 121927)


--- trunk/Source/WTF/ChangeLog	2012-07-05 23:14:29 UTC (rev 121926)
+++ trunk/Source/WTF/ChangeLog	2012-07-05 23:31:00 UTC (rev 121927)
@@ -1,3 +1,14 @@
+2012-07-05  Filip Pizlo  <fpi...@apple.com>
+
+        INLINE_ARM_FUNCTION(thingy) should make thingy be thumb2 if we're using thumb2
+        https://bugs.webkit.org/show_bug.cgi?id=90644
+
+        Reviewed by Mark Hahnenberg.
+        
+        Fix breakage introduced in http://trac.webkit.org/changeset/121885
+
+        * wtf/InlineASM.h:
+
 2012-07-05  Zoltan Herczeg  <zherc...@webkit.org>
 
         Port DFG JIT to traditional ARM

Modified: trunk/Source/WTF/wtf/InlineASM.h (121926 => 121927)


--- trunk/Source/WTF/wtf/InlineASM.h	2012-07-05 23:14:29 UTC (rev 121926)
+++ trunk/Source/WTF/wtf/InlineASM.h	2012-07-05 23:31:00 UTC (rev 121927)
@@ -83,7 +83,7 @@
 #define LOCAL_LABEL_STRING(name) ".L" #name
 #endif
 
-#if CPU(ARM_TRADITIONAL) && (defined(thumb2) || defined(__thumb2__) || defined(__thumb) || defined(__thumb__))
+#if (CPU(ARM_TRADITIONAL) && (defined(thumb2) || defined(__thumb2__) || defined(__thumb) || defined(__thumb__))) || CPU(ARM_THUMB2)
 #define INLINE_ARM_FUNCTION(name) ".thumb" "\n" ".thumb_func " THUMB_FUNC_PARAM(name) "\n"
 #else
 #define INLINE_ARM_FUNCTION(name)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to