Changeset 8565a42 in mainline for uspace/lib/math/arch/ia32/src/cos.S


Ignore:
Timestamp:
2018-03-02T20:34:50Z (8 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a1a81f69, d5e5fd1
Parents:
3061bc1 (diff), 34e1206 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:34:50)
git-committer:
GitHub <noreply@…> (2018-03-02 20:34:50)
Message:

Remove all trailing whitespace, everywhere.

See individual commit messages for details.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/math/arch/ia32/src/cos.S

    r3061bc1 r8565a42  
    3434FUNCTION_BEGIN(cos_f64)
    3535        # compute cosine (no stack frame)
    36        
     36
    3737        fldl 4(%esp)
    3838        fcos
    39        
     39
    4040        # detect if source operand is out of range
    41        
     41
    4242        fnstsw %ax
    4343        andw $X87_STATUS_WORD_C2_MASK, %ax
    4444        jnz fix_range
    45        
     45
    4646                ret
    47        
     47
    4848        # argument reduction
    49        
     49
    5050        fix_range:
    5151                fldpi
    5252                fadd %st(0)
    5353                fxch %st(1)
    54        
     54
    5555        reduce:
    5656                fprem1
     
    5858                andw $X87_STATUS_WORD_C2_MASK, %ax
    5959                jnz reduce
    60        
     60
    6161        fstp %st(1)
    6262        fcos
    63        
     63
    6464        ret
    6565FUNCTION_END(cos_f64)
Note: See TracChangeset for help on using the changeset viewer.