diff options
| author | bors <bors@rust-lang.org> | 2024-11-18 17:58:35 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-11-18 17:58:35 +0000 |
| commit | 03ee4845197ce71aa5ee28cb937a3e863b18b42f (patch) | |
| tree | 27d168b0cfa70db6ef484104537356f4ed4336a1 /compiler/rustc_const_eval/src | |
| parent | c602e9aeaab636302d52b17da64e84044462a230 (diff) | |
| parent | 62d0235a4a5cb5073b5cb81f9571035d921a926a (diff) | |
| download | rust-03ee4845197ce71aa5ee28cb937a3e863b18b42f.tar.gz rust-03ee4845197ce71aa5ee28cb937a3e863b18b42f.zip | |
Auto merge of #133179 - GuillaumeGomez:rollup-ro5rtts, r=GuillaumeGomez
Rollup of 5 pull requests Successful merges: - #133156 (typo in config.example.toml) - #133157 (stability: remove skip_stability_check_due_to_privacy) - #133163 (remove pointless cold_path impl in interpreter) - #133169 (Update autolabels for T-compiler and T-bootstrap) - #133171 (Add the missing quotation mark in comment) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_const_eval/src')
| -rw-r--r-- | compiler/rustc_const_eval/src/interpret/intrinsics.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/intrinsics.rs b/compiler/rustc_const_eval/src/interpret/intrinsics.rs index d89d73824aa..c7a56a80e81 100644 --- a/compiler/rustc_const_eval/src/interpret/intrinsics.rs +++ b/compiler/rustc_const_eval/src/interpret/intrinsics.rs @@ -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)?; |
