Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 1876 → Rev 1877

/trunk/kernel/arch/ia32/src/fpu_context.c
41,8 → 41,6
 
static fpu_context_function fpu_save,fpu_restore;
 
 
 
static void fpu_context_f_save(fpu_context_t *fctx)
{
__asm__ volatile (
92,8 → 90,6
fpu_restore=fpu_context_f_restore;
}
 
 
 
void fpu_context_save(fpu_context_t *fctx)
{
fpu_save(fctx);
104,8 → 100,6
fpu_restore(fctx);
}
 
 
 
void fpu_init()
{
uint32_t help0=0,help1=0;
123,4 → 117,3
 
/** @}
*/