1
Fork 0

Remove likely! and unlikely! macro from compiler

This commit is contained in:
Gary Guo 2022-05-31 22:42:42 +01:00
parent aaf100597c
commit 8b7299dd12
5 changed files with 13 additions and 31 deletions

View file

@ -750,7 +750,7 @@ impl<K: DepKind> DepGraph<K> {
dep_node
);
if unlikely!(!side_effects.is_empty()) {
if !side_effects.is_empty() {
self.emit_side_effects(tcx, data, dep_node_index, side_effects);
}