Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve expi() documentation issues due to deprecation. #7207

Closed
wants to merge 4 commits into from

Commits on Oct 1, 2019

  1. Merge pull request #2 from dlang/master

    Sync with upstream.
    veelo authored Oct 1, 2019
    Configuration menu
    Copy the full SHA
    9baca23 View commit details
    Browse the repository at this point in the history
  2. Resolve expi() documentation issues due to deprecation.

    Fixes issue 19733 https://issues.dlang.org/show_bug.cgi?id=19733
    
    Nowadays, the x87 instruction fsincos is slower, not faster, than computing sin and cos separately.
    https://stackoverflow.com/questions/12485190/calling-fsincos-instruction-in-llvm-slower-than-calling-libc-sin-cos-functions
    Therefore, there is no need for assembly in the expi() implementation, which was removed in commit 029440c.
    veelo committed Oct 1, 2019
    Configuration menu
    Copy the full SHA
    7b1cd55 View commit details
    Browse the repository at this point in the history
  3. Resolve expi() documentation issues due to deprecation.

    Fix issue 19733: https://issues.dlang.org/show_bug.cgi?id=19733
    
    Nowadays, the x87 instruction fsincos is slower, not faster, than computing sin and cos separately.
    https://stackoverflow.com/questions/12485190/calling-fsincos-instruction-in-llvm-slower-than-calling-libc-sin-cos-functions
    Therefore, there is no need for assembly in the expi() implementation, which was removed in commit 029440c.
    veelo committed Oct 1, 2019
    Configuration menu
    Copy the full SHA
    297d5ba View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b927774 View commit details
    Browse the repository at this point in the history