Ignore:
Timestamp:
Apr 9, 2012, 4:54:12 PM (13 years ago)
Author:
[email protected]
Message:

Unreviewed, modernize and clean up uses of ARM assembly mnemonics in inline asm blocks.

  • dfg/DFGOperations.cpp:

(JSC):

  • offlineasm/armv7.rb:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp

    r113552 r113642  
    8484    ".thumb_func " THUMB_FUNC_PARAM(function) "\n" \
    8585    SYMBOL_STRING(function) ":" "\n" \
    86         "cpy a2, lr" "\n" \
     86        "mov a2, lr" "\n" \
    8787        "b " SYMBOL_STRING_RELOCATION(function) "WithReturnAddress" "\n" \
    8888    );
     
    9797    ".thumb_func " THUMB_FUNC_PARAM(function) "\n" \
    9898    SYMBOL_STRING(function) ":" "\n" \
    99         "cpy a4, lr" "\n" \
     99        "mov a4, lr" "\n" \
    100100        "b " SYMBOL_STRING_RELOCATION(function) "WithReturnAddress" "\n" \
    101101    );
     
    11751175SYMBOL_STRING(getHostCallReturnValue) ":" "\n"
    11761176    "ldr r5, [r5, #-40]" "\n"
    1177     "cpy r0, r5" "\n"
     1177    "mov r0, r5" "\n"
    11781178    "b " SYMBOL_STRING_RELOCATION(getHostCallReturnValueWithExecState) "\n"
    11791179);
Note: See TracChangeset for help on using the changeset viewer.