mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-27 11:05:06 +00:00
Cleanup blocks are declared with `bb (cleanup) = { ... }`.
`Call` and `Drop` terminators take an additional argument describing the
unwind action, which is one of the following:
* `UnwindContinue()`
* `UnwindUnreachable()`
* `UnwindTerminate(reason)`, where reason is `ReasonAbi` or `ReasonInCleanup`
* `UnwindCleanup(block)`
Also support unwind resume and unwind terminate terminators:
* `UnwindResume()`
* `UnwindTerminate(reason)`
22 lines
452 B
Rust
22 lines
452 B
Rust
// Check that validation rejects cleanup edge to a non-cleanup block.
|
|
//
|
|
// failure-status: 101
|
|
// dont-check-compiler-stderr
|
|
// error-pattern: cleanuppad mismatch
|
|
#![feature(custom_mir, core_intrinsics)]
|
|
extern crate core;
|
|
use core::intrinsics::mir::*;
|
|
|
|
#[custom_mir(dialect = "built")]
|
|
pub fn main() {
|
|
mir!(
|
|
{
|
|
Call(RET = main(), block, UnwindCleanup(block))
|
|
}
|
|
block = {
|
|
Return()
|
|
}
|
|
)
|
|
|
|
}
|