mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
6b56aefa0b
Abort instead of panic on asserting intrinsics This fixes #1222 replacing the panic with an abort and a corresponding message. the stack trace is already printed, this just adds an optional message the caller can pass, and I just pass the same message we passed to the panic but now to the abort instead. r? @RalfJung