Rollup merge of #133163 - RalfJung:cold, r=saethlin

remove pointless cold_path impl in interpreter

This has a fallback impl so the interpreter impl is not needed.

r? ``@saethlin``
This commit is contained in:
Guillaume Gomez 2024-11-18 17:17:43 +01:00 committed by GitHub
commit 4baf540fce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 3 deletions

View File

@ -1264,6 +1264,7 @@ fn codegen_regular_intrinsic_call<'tcx>(
sym::cold_path => {
// This is a no-op. The intrinsic is just a hint to the optimizer.
// We still have an impl here to avoid it being turned into a call.
}
// Unimplemented intrinsics must have a fallback body. The fallback body is obtained

View File

@ -417,9 +417,6 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {
// These just return their argument
self.copy_op(&args[0], dest)?;
}
sym::cold_path => {
// This is a no-op. The intrinsic is just a hint to the optimizer.
}
sym::raw_eq => {
let result = self.raw_eq_intrinsic(&args[0], &args[1])?;
self.write_scalar(result, dest)?;