Skip to content

Commit

Permalink
Apply formatting patch
Browse files Browse the repository at this point in the history
  • Loading branch information
tannergooding committed May 10, 2024
1 parent b2d559e commit 30dc925
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coreclr/jit/importercalls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8859,8 +8859,8 @@ GenTree* Compiler::impEstimateIntrinsic(CORINFO_METHOD_HANDLE method,

if (intrinsicName == NI_System_Math_ReciprocalSqrtEstimate)
{
op1 = new (this, GT_INTRINSIC) GenTreeIntrinsic(genActualType(callType), op1, NI_System_Math_Sqrt,
nullptr);
op1 = new (this, GT_INTRINSIC)
GenTreeIntrinsic(genActualType(callType), op1, NI_System_Math_Sqrt, nullptr);
}

return gtNewOperNode(GT_DIV, genActualType(callType), gtNewDconNode(1.0, callType), op1);
Expand Down

0 comments on commit 30dc925

Please sign in to comment.