Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/arch/ppc32/src/fibril.S

    rb66cc97 rfe124d63  
    2929.text
    3030
    31 #include <abi/asmtool.h>
     31.global context_save
     32.global context_restore
     33
    3234#include <libarch/regname.h>
    3335#include <libarch/fibril_context.h>
    3436
    35 FUNCTION_BEGIN(context_save)
     37context_save:
    3638        stw sp, CONTEXT_OFFSET_SP(r3)
    3739        stw r2, CONTEXT_OFFSET_TLS(r3)
     
    6567        li r3, 1
    6668        blr
    67 FUNCTION_END(context_save)
    6869
    69 FUNCTION_BEGIN(context_restore)
     70
     71context_restore:
    7072        lwz sp, CONTEXT_OFFSET_SP(r3)
    7173        lwz r2, CONTEXT_OFFSET_TLS(r3)
     
    99101        li r3, 0
    100102        blr
    101 FUNCTION_END(context_restore)
Note: See TracChangeset for help on using the changeset viewer.