Title: [129157] trunk/Source/_javascript_Core
Revision
129157
Author
[email protected]
Date
2012-09-20 12:54:28 -0700 (Thu, 20 Sep 2012)

Log Message

Fixed a missing semicolon in the C++ llint backend.
https://bugs.webkit.org/show_bug.cgi?id=97252.

Reviewed by Geoff Garen.

* offlineasm/cloop.rb:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (129156 => 129157)


--- trunk/Source/_javascript_Core/ChangeLog	2012-09-20 19:51:58 UTC (rev 129156)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-09-20 19:54:28 UTC (rev 129157)
@@ -1,3 +1,12 @@
+2012-09-20  Mark Lam  <[email protected]>
+
+        Fixed a missing semicolon in the C++ llint backend.
+        https://bugs.webkit.org/show_bug.cgi?id=97252.
+
+        Reviewed by Geoff Garen.
+
+        * offlineasm/cloop.rb:
+
 2012-09-20  Geoffrey Garen  <[email protected]>
 
         Refactored the interpreter and JIT so they don't dictate closure layout

Modified: trunk/Source/_javascript_Core/offlineasm/cloop.rb (129156 => 129157)


--- trunk/Source/_javascript_Core/offlineasm/cloop.rb	2012-09-20 19:51:58 UTC (rev 129156)
+++ trunk/Source/_javascript_Core/offlineasm/cloop.rb	2012-09-20 19:54:28 UTC (rev 129157)
@@ -578,7 +578,7 @@
         when "loadbs"
             $asm.putc "#{operands[1].clValue(:int)} = #{operands[0].int8MemRef};"
         when "storeb"
-            $asm.putc "#{operands[1].uint8MemRef} = #{operands[0].clValue(:int8)}"
+            $asm.putc "#{operands[1].uint8MemRef} = #{operands[0].clValue(:int8)};"
         when "loadh"
             $asm.putc "#{operands[1].clValue(:int)} = #{operands[0].uint16MemRef};"
         when "loadhs"
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to