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

Rollup of 10 pull requests #62991

Closed
wants to merge 27 commits into from
Closed

Commits on Jul 13, 2019

  1. allow clippy::unreadable_literal in unicode tables

    Also modifies the generation script to emit 2018 edition paths.
    euclio committed Jul 13, 2019
    Configuration menu
    Copy the full SHA
    dee3d27 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2019

  1. Configuration menu
    Copy the full SHA
    8c050fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dfbf464 View commit details
    Browse the repository at this point in the history
  3. 3 Configuration menu
    Copy the full SHA
    88eced5 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2019

  1. Configuration menu
    Copy the full SHA
    d1aca3a View commit details
    Browse the repository at this point in the history
  2. fixed breaking changes

    Xandkeeper authored and JohnTitor committed Jul 18, 2019
    Configuration menu
    Copy the full SHA
    6a9d749 View commit details
    Browse the repository at this point in the history
  3. Use DerefMut

    JohnTitor committed Jul 18, 2019
    Configuration menu
    Copy the full SHA
    f2a9721 View commit details
    Browse the repository at this point in the history
  4. Replace deref with as_deref

    JohnTitor committed Jul 18, 2019
    Configuration menu
    Copy the full SHA
    59634bc View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2019

  1. Remove support for -Zlower-128bit-ops

    It is broken and unused
    bjorn3 committed Jul 19, 2019
    Configuration menu
    Copy the full SHA
    3427a14 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2019

  1. Configuration menu
    Copy the full SHA
    e8a1e73 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    93de733 View commit details
    Browse the repository at this point in the history
  3. Remove vector fadd/fmul reduction workarounds

    The bugs that this was working around have been fixed in LLVM 9.
    nikic committed Jul 20, 2019
    Configuration menu
    Copy the full SHA
    6fae7db View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2019

  1. code cleanup

    bpangWR committed Jul 22, 2019
    Configuration menu
    Copy the full SHA
    279c399 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2019

  1. Disable d32 on armv6 hf targets

    nikic committed Jul 23, 2019
    Configuration menu
    Copy the full SHA
    fe4cdd3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    71717b9 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2019

  1. Attempt to fix backtrace tests on i686-msvc

    Some fixes for i686-msvc and Windows have landed on the `backtrace`
    crate but hadn't made their way here yet. Let's update that and see if
    it passes CI.
    alexcrichton committed Jul 24, 2019
    Configuration menu
    Copy the full SHA
    61b680b View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2019

  1. ci: gate toolstate repo pushes on the TOOLSTATE_PUBLISH envvar

    Unfortunately due to an Azure quirk the TOOLSTATE_REPO_ACCESS_TOKEN is
    not suitable to gate whether to push new commits to the repo, as if it's
    not defined on the Azure side it will actually be set to the literal
    `$(TOOLSTATE_REPO_ACCESS_TOKEN)`, which screws everything up.
    
    This instead adds another, non-secret environment variable to gate
    publishing: TOOLSTATE_PUBLISH. As non-secret environment variables
    behave correctly this fixes the issue.
    pietroalbini committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    b01b5b9 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#62084 - euclio:unicode-table-tweak, r=kennytm

    allow clippy::unreadable_literal in unicode tables
    
    Also modifies the generation script to emit 2018 edition paths.
    Centril committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    b7b2a4c View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#62421 - JohnTitor:U007D-master, r=alexcrichton

    Introduce `as_deref` to Option
    
    This is re-submission for rust-lang#59628.
    Renames `deref()` to `as_deref()` and adds `deref_mut()` impls and tests.
    
    CC rust-lang#50264
    
    r? @Kimundi
    (I picked you as you're the previous reviewer.)
    Centril committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    ba6436f View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#62692 - eddyb:precompute-niches, r=oli-obk

    rustc: precompute the largest Niche and store it in LayoutDetails.
    
    Since we only ever can use at most one niche, it makes sense to just store that in the layout, for the simplest caching (especially as it's almost trivial to compute).
    
    There might be a speedup from this, but even if it's marginal now, the caching would be a more significant benefit for future optimization attempts.
    Centril committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    5c3e224 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#62801 - bjorn3:remove_lower_128bit_ops, r=a…

    …lexcrichton
    
    Remove support for -Zlower-128bit-ops
    
    It is broken and unused
    
    cc rust-lang#58969
    
    blocked rust-lang/compiler-builtins#302 (removes definitions of the lang items removed in this PR)
    
    r? @alexcrichton
    Centril committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    cf9b809 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#62828 - nikic:fadd-mul-reductions, r=eddyb

    Remove vector fadd/fmul reduction workarounds
    
    The bugs that this was working around have been fixed in LLVM 9.
    
    r? @gnzlbg
    Centril committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    4188083 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#62862 - BaoshanPang:cleanup, r=alexcrichton

    code cleanup
    
    remove all codes that are not used by vxWorks
    Centril committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    62df824 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#62897 - alexcrichton:fix-i686-msvc-tests, r…

    …=pietroalbini
    
    Attempt to fix backtrace tests on i686-msvc
    
    Some fixes for i686-msvc and Windows have landed on the `backtrace`
    crate but hadn't made their way here yet. Let's update that and see if
    it passes CI.
    Centril committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    76a0a81 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#62904 - nikic:arm-d32, r=alexcrichton

    Disable d32 on armv6 hf targets
    
    We already do this on armv7 targets. It seems that this now gets enabled by default if '+vfp2` is specified, so disable it explicitly.
    
    Hopefully fixes rust-lang#62841.
    
    r? @alexcrichton
    Centril committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    5765a2b View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#62907 - nikic:msp430-asmparser, r=alexcrichton

    Initialize the MSP430 AsmParser
    
    Hopefully fixes rust-lang#59077.
    
    r? @alexcrichton
    Centril committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    7273fa2 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#62970 - pietroalbini:fix-tools-builder, r=a…

    …lexcrichton
    
    ci: gate toolstate repo pushes on the TOOLSTATE_PUBLISH envvar
    
    This PR fixes toolstate failing to push on the LinuxTools PR builder by gating the pushes on the new `TOOLSTATE_PUBLISH` environment variable, which is set on prod credentials but not on the PR ones. The old code checked whether the access token was set, but that doesn't work due to an Azure quirk.
    
    For a bit of background, secret environment variables are not available by default, but each step needs to explicitly declare which secret vars to load:
    
    ```yaml
    - bash: echo foo
      env:
        SECRET_VAR: $(SECRET_VAR)
    ```
    
    This works fine when the variable is present but when it's missing, instead of setting `SECRET_VAR` to an empty string or just not setting it at all, Azure Pipelines puts the literal `$(SECRET_VAR)` as the content, which completly breaks the old check we had. I tried almost every thing to make this work in a sensible way, and the only conclusion I reached is to set the variable at the top level with the runtime expression evaluation syntax, which sets the variable to an empty string if missing:
    
    ```yaml
    # At the top:
    variables:
      - name: MAYBE_SECRET_VAR
        value: $[ variables.MAYBE_SECRET_VAR ]
    
    # In the step:
    - bash: echo foo
      env:
        SECRET_VAR: $(MAYBE_SECRET_VAR)
    ```
    
    While that *could've worked* it was ugly and messy, so I just opted to add yet another non-secret variable.
    
    r? @alexcrichton
    fixes rust-lang#62811
    Centril committed Jul 25, 2019
    Configuration menu
    Copy the full SHA
    7218c9e View commit details
    Browse the repository at this point in the history