Title: [153307] trunk/Source/_javascript_Core
Revision
153307
Author
[email protected]
Date
2013-07-25 03:24:20 -0700 (Thu, 25 Jul 2013)

Log Message

Fix "Unhandled opcode localAnnotation" build error in sh4 and mips LLINT.
https://bugs.webkit.org/show_bug.cgi?id=119076

Patch by Julien Brianceau <[email protected]> on 2013-07-25
Reviewed by Allan Sandfeld Jensen.

* offlineasm/mips.rb:
* offlineasm/sh4.rb:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (153306 => 153307)


--- trunk/Source/_javascript_Core/ChangeLog	2013-07-25 09:51:42 UTC (rev 153306)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-07-25 10:24:20 UTC (rev 153307)
@@ -1,3 +1,13 @@
+2013-07-25  Julien Brianceau  <[email protected]>
+
+        Fix "Unhandled opcode localAnnotation" build error in sh4 and mips LLINT.
+        https://bugs.webkit.org/show_bug.cgi?id=119076
+
+        Reviewed by Allan Sandfeld Jensen.
+
+        * offlineasm/mips.rb:
+        * offlineasm/sh4.rb:
+
 2013-07-25  Zan Dobersek  <[email protected]>
 
         Unreviewed GTK build fix.

Modified: trunk/Source/_javascript_Core/offlineasm/mips.rb (153306 => 153307)


--- trunk/Source/_javascript_Core/offlineasm/mips.rb	2013-07-25 09:51:42 UTC (rev 153306)
+++ trunk/Source/_javascript_Core/offlineasm/mips.rb	2013-07-25 10:24:20 UTC (rev 153307)
@@ -886,7 +886,7 @@
             $asm.putStr("OFFLINE_ASM_CPLOAD($31)")
             $asm.puts "move $s4, $gp"
         else
-            raise "Unhandled opcode #{opcode} at #{codeOriginString}"
+            lowerDefault
         end
     end
 end

Modified: trunk/Source/_javascript_Core/offlineasm/sh4.rb (153306 => 153307)


--- trunk/Source/_javascript_Core/offlineasm/sh4.rb	2013-07-25 09:51:42 UTC (rev 153306)
+++ trunk/Source/_javascript_Core/offlineasm/sh4.rb	2013-07-25 10:24:20 UTC (rev 153307)
@@ -777,7 +777,7 @@
             # This special opcode always generates an illegal instruction exception.
             $asm.puts ".word 0xfffd"
         else
-            raise "Unhandled opcode #{opcode} at #{codeOriginString}"
+            lowerDefault
         end
     end
 end
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to