Author: [email protected]
Date: Thu Apr 16 05:12:47 2009
New Revision: 1723

Modified:
    branches/bleeding_edge/src/codegen-arm.cc

Log:
Don't blindly use blx instruction without knowing whether the CPU supports  
it.
Review URL: http://codereview.chromium.org/67213

Modified: branches/bleeding_edge/src/codegen-arm.cc
==============================================================================
--- branches/bleeding_edge/src/codegen-arm.cc   (original)
+++ branches/bleeding_edge/src/codegen-arm.cc   Thu Apr 16 05:12:47 2009
@@ -4574,7 +4574,7 @@
      __ swi(swi_number);
  #else
      // Actually call the add routine written in C.
-    __ blx(r5);
+    __ Call(r5);
  #endif
      // Store answer in the overwritable heap number.
      __ pop(r4);

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

Reply via email to