Title: [163881] trunk/Source/_javascript_Core
Revision
163881
Author
rga...@webkit.org
Date
2014-02-11 09:34:39 -0800 (Tue, 11 Feb 2014)

Log Message

LLInt typo error after r139004.
https://bugs.webkit.org/show_bug.cgi?id=128592

Reviewed by Michael Saboff.

* offlineasm/arm.rb: change immediate to register in the condition

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (163880 => 163881)


--- trunk/Source/_javascript_Core/ChangeLog	2014-02-11 17:33:41 UTC (rev 163880)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-02-11 17:34:39 UTC (rev 163881)
@@ -1,3 +1,12 @@
+2014-02-11  Gabor Rapcsanyi  <rga...@webkit.org>
+
+        LLInt typo error after r139004.
+        https://bugs.webkit.org/show_bug.cgi?id=128592
+
+        Reviewed by Michael Saboff.
+
+        * offlineasm/arm.rb: change immediate to register in the condition
+
 2014-02-10  Filip Pizlo  <fpi...@apple.com>
 
         LICM should gracefully handle unprofiled code

Modified: trunk/Source/_javascript_Core/offlineasm/arm.rb (163880 => 163881)


--- trunk/Source/_javascript_Core/offlineasm/arm.rb	2014-02-11 17:33:41 UTC (rev 163880)
+++ trunk/Source/_javascript_Core/offlineasm/arm.rb	2014-02-11 17:34:39 UTC (rev 163881)
@@ -335,7 +335,7 @@
                 else
                     $asm.puts "adds #{operands[2].armOperand}, #{operands[1].armOperand}, #{operands[0].armOperand}"
                 end
-            elsif operands.size == 3 and operands[0].immediate?
+            elsif operands.size == 3 and operands[0].register?
                 raise unless operands[1].register?
                 raise unless operands[2].register?
                 $asm.puts "adds #{armFlippedOperands(operands)}"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to