We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37e8e05 commit 08529afCopy full SHA for 08529af
src/test/codegen/catch-unwind.rs
@@ -1,5 +1,14 @@
1
// compile-flags: -O
2
3
+// On x86 the closure is inlined in foo() producting something like
4
+// define i32 @foo() [...] {
5
+// tail call void @bar() [...]
6
+// ret i32 0
7
+// }
8
+// On riscv the closure is another function, placed before fn foo so CHECK can't
9
+// find it
10
+// ignore-riscv64 FIXME
11
+
12
#![crate_type = "lib"]
13
14
extern "C" {
0 commit comments