Changeset e7b7be3f in mainline for kernel/arch/ia32/src/fpu_context.c


Ignore:
Timestamp:
2007-01-22T13:10:08Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0f3fc9b
Parents:
62c63fc
Message:

asm volatile → asm volatile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/fpu_context.c

    r62c63fc re7b7be3f  
    4444static void fpu_context_f_save(fpu_context_t *fctx)
    4545{
    46         __asm__ volatile (
     46        asm volatile (
    4747                "fnsave %0"
    4848                : "=m"(*fctx)
     
    5252static void fpu_context_f_restore(fpu_context_t *fctx)
    5353{
    54         __asm__ volatile (
     54        asm volatile (
    5555                "frstor %0"
    5656                : "=m"(*fctx)
     
    6060static void fpu_context_fx_save(fpu_context_t *fctx)
    6161{
    62         __asm__ volatile (
     62        asm volatile (
    6363                "fxsave %0"
    6464                : "=m"(*fctx)
     
    6868static void fpu_context_fx_restore(fpu_context_t *fctx)
    6969{
    70         __asm__ volatile (
     70        asm volatile (
    7171                "fxrstor %0"
    7272                : "=m"(*fctx)
     
    104104{
    105105        uint32_t help0 = 0, help1 = 0;
    106         __asm__ volatile (
     106        asm volatile (
    107107                "fninit;\n"
    108108                "stmxcsr %0\n"
Note: See TracChangeset for help on using the changeset viewer.