Ignore:
Timestamp:
Nov 14, 2013, 5:28:05 AM (12 years ago)
Author:
[email protected]
Message:

Fix build for sh4 architectures (broken since r159276).
https://bugs.webkit.org/show_bug.cgi?id=124344

Patch by Julien Brianceau <[email protected]> on 2013-11-14
Reviewed by Csaba Osztrogonác.

  • offlineasm/sh4.rb: There is no fp alias for r14 register for sh4.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/offlineasm/sh4.rb

    r159276 r159283  
    918918            $asm.puts "mov.l @r15+, r11"
    919919            $asm.puts "mov.l @r15+, r13"
    920             $asm.puts "lds.l @r15+,pr"
    921             $asm.puts "mov.l @r15+, fp"
     920            $asm.puts "lds.l @r15+, pr"
     921            $asm.puts "mov.l @r15+, r14"
    922922        when "pushCalleeSaves"
    923             $asm.puts "mov.l fp, @-r15"
     923            $asm.puts "mov.l r14, @-r15"
    924924            $asm.puts "sts.l pr, @-r15"
    925925            $asm.puts "mov.l r13, @-r15"
Note: See TracChangeset for help on using the changeset viewer.