Skip to content

Commit 8076522

Browse files
authored
[DllImportGenerator] Stop ignoring QCalls when looking for methods to convert to GeneratedDllImport (#61678)
1 parent 9e11006 commit 8076522

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/libraries/System.Runtime.InteropServices/gen/DllImportGenerator/Analyzers/ConvertToGeneratedDllImportAnalyzer.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,6 @@ private static void AnalyzeSymbol(SymbolAnalysisContext context, List<ITypeSymbo
8181
}
8282
}
8383

84-
// Ignore QCalls
85-
if (dllImportData.ModuleName == "QCall")
86-
return;
87-
8884
// Ignore methods with unsupported parameters
8985
foreach (IParameterSymbol parameter in method.Parameters)
9086
{

0 commit comments

Comments
 (0)