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 5 pull requests #66225

Merged
merged 20 commits into from
Nov 8, 2019
Merged

Rollup of 5 pull requests #66225

merged 20 commits into from
Nov 8, 2019

Commits on Nov 6, 2019

  1. Configuration menu
    Copy the full SHA
    c0056c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    79b35e9 View commit details
    Browse the repository at this point in the history
  3. safe_extern_static -> error

    Centril committed Nov 6, 2019
    Configuration menu
    Copy the full SHA
    98d2c51 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b54c578 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8e27c4f View commit details
    Browse the repository at this point in the history
  6. nested_impl_trait -> error

    Centril committed Nov 6, 2019
    Configuration menu
    Copy the full SHA
    0cbd06a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    a12e69d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    574d2b8 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2019

  1. Configuration menu
    Copy the full SHA
    52e8ec1 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2019

  1. Configuration menu
    Copy the full SHA
    15ec8f7 View commit details
    Browse the repository at this point in the history
  2. miri: Rename to_{u,i}size to to_machine_{u,i}size

    Having a function `to_usize` that does not return a usize is somewhat confusing
    RalfJung committed Nov 8, 2019
    Configuration menu
    Copy the full SHA
    900fc9a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    30d7279 View commit details
    Browse the repository at this point in the history
  4. hir::MethodSig -> hir::FnSig

    Centril committed Nov 8, 2019
    Configuration menu
    Copy the full SHA
    27511b2 View commit details
    Browse the repository at this point in the history
  5. ast::MethodSig -> ast::FnSig

    Centril committed Nov 8, 2019
    Configuration menu
    Copy the full SHA
    2cd48e8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b4c6abc View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#65785 - Centril:compat-to-error-2, r=oli-obk

    Transition future compat lints to {ERROR, DENY} - Take 2
    
    Follow up to rust-lang#63247 implementing rust-lang#63247 (comment).
    
    - `legacy_ctor_visibility` (ERROR) -- closes rust-lang#39207
    - `legacy_directory_ownership` (ERROR) -- closes rust-lang#37872
    - `safe_extern_static` (ERROR) -- closes rust-lang#36247
    - `parenthesized_params_in_types_and_modules` (ERROR) -- closes rust-lang#42238
    - `duplicate_macro_exports` (ERROR)
    - `nested_impl_trait` (ERROR) -- closes rust-lang#59014
    - `ill_formed_attribute_input` (DENY) -- transitions rust-lang#57571
    - `patterns_in_fns_without_body` (DENY) -- transitions rust-lang#35203
    
    r? @varkor
    cc @petrochenkov
    Centril authored Nov 8, 2019
    Configuration menu
    Copy the full SHA
    7ab50e4 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#66007 - estebank:remove-here, r=Centril

    Remove "here" from "expected one of X here"
    Centril authored Nov 8, 2019
    Configuration menu
    Copy the full SHA
    5a6fd11 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#66043 - RalfJung:memory-get-raw, r=cramertj

    rename Memory::get methods to get_raw to indicate their unchecked nature
    
    Some recent Miri PRs started using these methods when they should not; this should discourage their use.
    
    In fact we could make these methods private to the `interp` module as far as Miri is concerned -- with the exception of the `uninit` intrinsic which will hopefully go away soon. @bjorn3 @oli-obk does priroda need these methods? It would be great to be able to seal them away.
    Centril authored Nov 8, 2019
    Configuration menu
    Copy the full SHA
    3b0438a View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#66154 - RalfJung:to_usize, r=oli-obk

    miri: Rename to_{u,i}size to to_machine_{u,i}size
    
    Having a function `to_usize` that does not return a (host) usize is somewhat confusing, so let's rename it.
    
    r? @oli-obk
    Centril authored Nov 8, 2019
    Configuration menu
    Copy the full SHA
    76db11c View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#66188 - Centril:fnsig, r=davidtwco

    `MethodSig` -> `FnSig` & Use it in `ItemKind::Fn`
    
    In both AST & HIR, rename `MethodSig` to `FnSig` and then proceed to use it in `ItemKind::Fn` so that the overall structure is more regular.
    
    r? @davidtwco
    Centril authored Nov 8, 2019
    Configuration menu
    Copy the full SHA
    65c77bc View commit details
    Browse the repository at this point in the history