Changeset ca90d65 in mainline for arch/ia32/src/context.s


Ignore:
Timestamp:
2005-05-08T14:54:47Z (20 years ago)
Author:
Jakub Vana <jakub.vana@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4e1d008
Parents:
5dc2112
Message:

Change indentation in context.s.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/context.s

    r5dc2112 rca90d65  
    7979.global fpu_context_save
    8080fpu_context_save:
    81     ret
     81        ret
    8282.global fpu_context_restore
    8383fpu_context_restore:
    84     ret
     84        ret
    8585
    8686.global fpu_lazy_context_save
    8787fpu_lazy_context_save:
    88     mov 4(%esp),%eax;
    89     fxsave (%eax)
    90     xor %eax,%eax;
    91     ret;
     88        mov 4(%esp),%eax;
     89        fxsave (%eax)
     90        xor %eax,%eax;
     91        ret;
    9292.global fpu_lazy_context_restore
    9393fpu_lazy_context_restore:
    94     mov 4(%esp),%eax;
    95     fxrstor (%eax)
    96     xor %eax,%eax;
    97     ret;
     94        mov 4(%esp),%eax;
     95        fxrstor (%eax)
     96        xor %eax,%eax;
     97       ret;
    9898
Note: See TracChangeset for help on using the changeset viewer.