Skip to content

Rollup of 7 pull requests #60523

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 34 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
342309e
Add assert
JohnTitor Mar 29, 2019
70e7265
Expand uint
JohnTitor Mar 29, 2019
d7bb9de
Clean up
JohnTitor Mar 29, 2019
261c7c1
Remove unnecessary cast
JohnTitor Mar 29, 2019
bf3a744
Add tests
JohnTitor Mar 30, 2019
cfe99be
Remove unnecessary variable
JohnTitor Mar 30, 2019
69dc278
Add bar
JohnTitor Mar 30, 2019
6fcd5bb
WIP: correct flags
JohnTitor Mar 30, 2019
1d12b06
Fix variable name
JohnTitor Apr 1, 2019
1aea502
Fix check
JohnTitor Apr 17, 2019
9b9a1f2
Separate comment
JohnTitor Apr 17, 2019
d8454fc
Add flags
JohnTitor Apr 24, 2019
dca8319
Remove check flag
JohnTitor Apr 24, 2019
e21077c
WIP: fix debuginfo test
JohnTitor Apr 24, 2019
a197466
Ignore line length
JohnTitor Apr 30, 2019
4315c78
WIP: add some flags for debuginfo
JohnTitor Apr 30, 2019
6ed4b52
Ignore line length
JohnTitor Apr 30, 2019
a3aafea
Account for paths in incorrect pub qualifier help
estebank May 1, 2019
3b24cf8
Update RLS
Xanewok May 1, 2019
31407e8
Update Cargo
Xanewok May 2, 2019
2c371b2
build dist-aarch64-linux with --enable-profiler
froydnj May 2, 2019
d72f4de
Constrain all regions in the concrete type for an opaque type
matthewjasper May 1, 2019
a0f4914
This continue is not needed
spastorino Apr 26, 2019
9f7b953
Remove root_local fn in favor of base_local
spastorino May 1, 2019
49f0141
Implement base_local iteratively
spastorino May 1, 2019
2e85b31
Fix codegen tests
JohnTitor May 3, 2019
1e2af7d
Reword casting message
estebank May 3, 2019
3c7bcb1
Rollup merge of #59520 - JohnTitor:add-assert, r=eddyb
Centril May 3, 2019
dbe700b
Rollup merge of #60429 - estebank:pub-path, r=michaelwoerister
Centril May 3, 2019
ba4a1e1
Rollup merge of #60436 - Xanewok:update-rls, r=Manishearth
Centril May 3, 2019
ef6e45f
Rollup merge of #60449 - matthewjasper:impl-trait-outlives, r=pnkfelix
Centril May 3, 2019
0c9f635
Rollup merge of #60476 - froydnj:aarch64-profiling, r=alexcrichton
Centril May 3, 2019
df5a557
Rollup merge of #60486 - spastorino:place-related-refactors, r=oli-obk
Centril May 3, 2019
a911963
Rollup merge of #60517 - estebank:wording, r=davidtwco
Centril May 3, 2019
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
Remove check flag
  • Loading branch information
JohnTitor committed Apr 24, 2019
commit dca8319c2c63f17fb31dd82554240acb529d2962
5 changes: 0 additions & 5 deletions src/test/debuginfo/repr-u128.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ pub enum Foo {
Hi = 1 << 64,
}

pub fn foo() -> Option<Foo> {
None
}

// CHECK: declare void @llvm.dbg.value
fn main() {
let vals = (Some(Foo::Lo), None::<Foo>);
}