From 7e310cec5f9db685b3194a8dff2f7d35107e0930 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Strehovsk=C3=BD?= Date: Thu, 13 Nov 2025 23:39:03 -0800 Subject: [PATCH] Fix ValueTask`1.ConfigureAwait intrinsic detection --- 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 51e0424fe58d8d..13c0bf64ee6664 100644 --- a/src/coreclr/jit/importercalls.cpp +++ b/src/coreclr/jit/importercalls.cpp @@ -11162,7 +11162,7 @@ NamedIntrinsic Compiler::lookupNamedIntrinsic(CORINFO_METHOD_HANDLE method) if (strcmp(methodName, "ConfigureAwait") == 0) { if (strcmp(className, "Task`1") == 0 || strcmp(className, "Task") == 0 || - strcmp(className, "ValuTask`1") == 0 || strcmp(className, "ValueTask") == 0) + strcmp(className, "ValueTask`1") == 0 || strcmp(className, "ValueTask") == 0) { result = NI_System_Threading_Tasks_Task_ConfigureAwait; }