From e4e6c25f678ac7aa70dcf61bb34beb59c95bb235 Mon Sep 17 00:00:00 2001 From: hyd-dev Date: Thu, 3 Jun 2021 13:39:33 +0800 Subject: [PATCH] Remove FIXME in `tests/compile-fail/panic/bad_unwind.rs` --- tests/compile-fail/panic/bad_unwind.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/compile-fail/panic/bad_unwind.rs b/tests/compile-fail/panic/bad_unwind.rs index cfb109cb8b5..fde2c19af07 100644 --- a/tests/compile-fail/panic/bad_unwind.rs +++ b/tests/compile-fail/panic/bad_unwind.rs @@ -4,8 +4,6 @@ //! Unwinding when the caller ABI is "C" (without "-unwind") is UB. //! Currently we detect the ABI mismatch; we could probably allow such calls in principle one day //! but then we have to detect the unexpected unwinding. -//! FIXME: `-Zmiri-disable-abi-check` does not work for this test because function pointers are -//! always allowed to unwind. extern "C-unwind" fn unwind() { panic!();