Skip to content

Commit 585eab1

Browse files
committed
Fix
1 parent b336867 commit 585eab1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/coreclr/jit/async.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ void AsyncTransformation::LiftLIREdges(BasicBlock* block,
10891089
{
10901090
// No interference by IR invariants
10911091
LIR::AsRange(block).Remove(tree);
1092-
LIR::AsRange(block).InsertAfter(use.User(), tree);
1092+
LIR::AsRange(block).InsertBefore(use.User(), tree);
10931093
continue;
10941094
}
10951095
}

0 commit comments

Comments
 (0)