Changeset 9756131 in mainline for arch/ia64/src/asm.S


Ignore:
Timestamp:
2005-08-31T10:00:14Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b9e97fb
Parents:
3de9e5e
Message:

Get rid of memcopy().
All we now have is memcpy() and _memcpy().
memcpy() is defined to be builtin.
Where not applicable, architectures must implement memcpy() code or call slowish _memcopy().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia64/src/asm.S

    r3de9e5e r9756131  
    3131.global memcpy
    3232memcpy:
    33         /*
    34          * Switch the role of first two arguments
    35          */
    36         sub r33 = r33, r32      ;;
    37         add r32 = r32, r33      ;;
    38         sub r33 = r32, r33     
    39                
    40         br _memcopy
    41 
    42 .global memcopy
    43 memcopy:
    44         br _memcopy
     33        br _memcpy
    4534
    4635.global memsetb
Note: See TracChangeset for help on using the changeset viewer.