test: codegen: skip catch-unwind on riscv64

It isn't clear to me if this is a bug or not, hence the FIXME
This commit is contained in:
Tom Eccles 2020-06-04 12:13:36 +01:00
parent 37e8e05712
commit 08529aff80

View File

@ -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" {