Skip to content

Rollup of 9 pull requests #73064

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 23 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
58ae4a9
de-promote Duration::from_secs
RalfJung May 2, 2020
071f042
linker: Add a linker rerun hack for gcc versions not supporting -stat…
petrochenkov May 28, 2020
7242bda
Be more careful around ty::Error in generators
jonas-schievink May 30, 2020
eaa57cf
`PolyTraitRef::self_ty` returns `Binder<Ty>`
ecstatic-morse May 23, 2020
b4e06b9
Call `skip_binder` or `no_bound_vars` before `self_ty`
ecstatic-morse May 23, 2020
95e9768
test: codegen: skip tests inappropriate for riscv64
tblah May 20, 2020
c872dcf
test: codegen: riscv64-abi: print value numbers for unnamed func args
tblah Jun 4, 2020
37e8e05
test: codegen: Add riscv abi llvm intrinsics test
tblah Jun 4, 2020
08529af
test: codegen: skip catch-unwind on riscv64
tblah Jun 4, 2020
94605b9
run-make regression test for issue #70924.
pnkfelix Jun 3, 2020
b541d3d
Add `-Z span-debug` to allow for easier debugging of proc macros
Aaron1011 May 31, 2020
2764e54
impl ToSocketAddrs for (String, u16)
yoshuawuyts Jun 4, 2020
a9d5dff
Ignore windows in the test.
pnkfelix Jun 5, 2020
32c488f
remove outdated comment
lcnr Jun 6, 2020
1063d8a
Rollup merge of #71796 - RalfJung:from-secs, r=nikomatsakis
RalfJung Jun 6, 2020
6901d34
Rollup merge of #72508 - ecstatic-morse:poly-self-ty, r=nikomatsakis
RalfJung Jun 6, 2020
64defa4
Rollup merge of #72708 - petrochenkov:linkhack, r=cuviper
RalfJung Jun 6, 2020
c8e177b
Rollup merge of #72764 - jonas-schievink:mind-the-tyerr, r=estebank
RalfJung Jun 6, 2020
af8aabf
Rollup merge of #72799 - Aaron1011:feature/span-debug, r=petrochenkov
RalfJung Jun 6, 2020
d99ab70
Rollup merge of #72952 - pnkfelix:regression-test-for-issue-70924, r=…
RalfJung Jun 6, 2020
3b588a6
Rollup merge of #72977 - tblah:riscv-codegen-llvm10, r=nikomatsakis
RalfJung Jun 6, 2020
1873e8d
Rollup merge of #73007 - yoshuawuyts:socketaddr-from-string-u16, r=sf…
RalfJung Jun 6, 2020
5c3bc43
Rollup merge of #73059 - lcnr:outdated-comment, r=matthewjasper
RalfJung Jun 6, 2020
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
test: codegen: skip catch-unwind on riscv64
It isn't clear to me if this is a bug or not, hence the FIXME
  • Loading branch information
tblah committed Jun 4, 2020
commit 08529aff80e2fb955ff295a1cb600c4401d47d9c
9 changes: 9 additions & 0 deletions src/test/codegen/catch-unwind.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
// compile-flags: -O

// On x86 the closure is inlined in foo() producting something like
// define i32 @foo() [...] {
// tail call void @bar() [...]
// ret i32 0
// }
// On riscv the closure is another function, placed before fn foo so CHECK can't
// find it
// ignore-riscv64 FIXME

#![crate_type = "lib"]

extern "C" {
Expand Down