Merge from rustc

This commit is contained in:
The Miri Cronjob Bot 2024-03-09 05:01:38 +00:00
commit 4d15a7553f
2 changed files with 4 additions and 0 deletions

View File

@ -255,6 +255,9 @@ fn never_loop_expr<'tcx>(
InlineAsmOperand::Const { .. } | InlineAsmOperand::SymFn { .. } | InlineAsmOperand::SymStatic { .. } => {
NeverLoopResult::Normal
},
InlineAsmOperand::Label { block } => {
never_loop_block(cx, block, local_labels, main_loop_id)
}
})),
ExprKind::OffsetOf(_, _)
| ExprKind::Yield(_, _)

View File

@ -833,6 +833,7 @@ pub fn hash_expr(&mut self, e: &Expr<'_>) {
self.hash_body(anon_const.body);
},
InlineAsmOperand::SymStatic { path, def_id: _ } => self.hash_qpath(path),
InlineAsmOperand::Label { block } => self.hash_block(block),
}
}
},