We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2572c81 commit 465a755Copy full SHA for 465a755
src/tools/miri/src/shims/intrinsics/mod.rs
@@ -64,6 +64,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> {
64
65
// The rest jumps to `ret` immediately.
66
if !this.emulate_intrinsic_by_name(intrinsic_name, instance.args, args, dest)? {
67
+ // We haven't handled the intrinsic, let's see if we can use a fallback body.
68
if this.tcx.intrinsic(instance.def_id()).unwrap().must_be_overridden {
69
throw_unsup_format!("unimplemented intrinsic: `{intrinsic_name}`")
70
}
0 commit comments