Skip to content

Rollup of 9 pull requests #55181

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

Closed
wants to merge 27 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ed10a3f
Custom E0277 diagnostic for `Path`
estebank Oct 11, 2018
e95472b
Only suggest paths that exist.
davidtwco Oct 12, 2018
507381e
Fix ICE and report a human readable error
oli-obk Oct 13, 2018
3405204
Explain all casts in detail
oli-obk Oct 15, 2018
2456f33
Try to trigger some error cases
oli-obk Oct 15, 2018
007390c
Add trailing newline to satisfy tidy
oli-obk Oct 15, 2018
8180e1b
Check the type of statics and constants for `Sized`ness
oli-obk Oct 11, 2018
4dcf491
Use platform independent types
oli-obk Oct 14, 2018
fbbc739
Add test for no_core statics
oli-obk Oct 15, 2018
10a01c1
Update cargo submodule
oli-obk Oct 16, 2018
12d79f7
rustc: Fix (again) simd vectors by-val in ABI
alexcrichton Oct 14, 2018
38f3ad4
Squash closure cast error into fn ptr cast error
oli-obk Oct 17, 2018
da40916
resolve: improve common patterns
ljedrz Oct 17, 2018
89c20b7
resolve: improve/remove allocations
ljedrz Oct 17, 2018
0a858dc
Don't warn about parentheses on `match (return)`
varkor Oct 17, 2018
40bba70
Make warnings into errors
varkor Oct 18, 2018
518a5a4
Updated RELEASES.md for 1.30.0
Sep 17, 2018
7403d55
Make OpTy field op public for priroda
bjorn3 Oct 18, 2018
a0cb6d2
Rollup merge of #54300 - Aaronepower:master, r=Aaronepower
kennytm Oct 18, 2018
5dc607b
Rollup merge of #54979 - estebank:path-unsized, r=nikomatsakis
kennytm Oct 18, 2018
311fd3c
Rollup merge of #55007 - davidtwco:issue-39175, r=petrochenkov
kennytm Oct 18, 2018
506d988
Rollup merge of #55071 - oli-obk:const_cast_🍨, r=RalfJung
kennytm Oct 18, 2018
cc6f8f6
Rollup merge of #55073 - alexcrichton:demote-simd, r=nagisa
kennytm Oct 18, 2018
d398c16
Rollup merge of #55144 - ljedrz:cleanup_resolve, r=petrochenkov
kennytm Oct 18, 2018
761cc57
Rollup merge of #55166 - varkor:ret-parens, r=davidtwco
kennytm Oct 18, 2018
cb9f6be
Rollup merge of #55179 - bjorn3:miri_public_op_field, r=oli-obk
kennytm Oct 18, 2018
1babdd6
Rollup merge of #55004 - oli-obk:sized_static, r=cramertj
kennytm Oct 18, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make OpTy field op public for priroda
  • Loading branch information
bjorn3 committed Oct 18, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 7403d55f06f2837cb5d2b0ba7ee790f52e044ce6
2 changes: 1 addition & 1 deletion src/librustc_mir/interpret/operand.rs
Original file line number Diff line number Diff line change
@@ -291,7 +291,7 @@ impl<Tag> Operand<Tag> {

#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub struct OpTy<'tcx, Tag=()> {
crate op: Operand<Tag>, // ideally we'd make this private, but const_prop needs this
pub op: Operand<Tag>, // This is used by [priroda](https://github.com/oli-obk/priroda)
pub layout: TyLayout<'tcx>,
}