From 7ee574d795949b5977e986cc8a6b2f697c75f5c2 Mon Sep 17 00:00:00 2001 From: Egor Bogatov Date: Thu, 8 Jun 2023 14:51:45 +0200 Subject: [PATCH] don't use GetEarlyNode in impGetSpecialIntrinsicExactReturnType (#87263) --- src/coreclr/jit/importercalls.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/jit/importercalls.cpp b/src/coreclr/jit/importercalls.cpp index 86d91fa..43ad185 100644 --- a/src/coreclr/jit/importercalls.cpp +++ b/src/coreclr/jit/importercalls.cpp @@ -7588,7 +7588,7 @@ CORINFO_CLASS_HANDLE Compiler::impGetSpecialIntrinsicExactReturnType(GenTreeCall if (instParam != nullptr) { assert(instParam->GetNext() == nullptr); - CORINFO_CLASS_HANDLE hClass = gtGetHelperArgClassHandle(instParam->GetEarlyNode()); + CORINFO_CLASS_HANDLE hClass = gtGetHelperArgClassHandle(instParam->GetNode()); if (hClass != NO_CLASS_HANDLE) { hClass = getTypeInstantiationArgument(hClass, 0); -- 2.7.4