From 38939d5a28bd335f3ab8232fc35eaa157f1646b6 Mon Sep 17 00:00:00 2001 From: Jan Vorlicek Date: Fri, 22 Nov 2019 15:45:19 +0100 Subject: [PATCH] Remove System.ComponentModel.TypeConverter exclusion from SuperILC It turns out it is not needed anymore, the assembly compiles fine --- src/coreclr/src/tools/ReadyToRun.SuperIlc/BuildFolderSet.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/coreclr/src/tools/ReadyToRun.SuperIlc/BuildFolderSet.cs b/src/coreclr/src/tools/ReadyToRun.SuperIlc/BuildFolderSet.cs index 6209be4ac1f9f4..51c5da674b3b1e 100644 --- a/src/coreclr/src/tools/ReadyToRun.SuperIlc/BuildFolderSet.cs +++ b/src/coreclr/src/tools/ReadyToRun.SuperIlc/BuildFolderSet.cs @@ -41,9 +41,6 @@ public FrameworkExclusion(string simpleName, string reason, bool crossgen2Only = new FrameworkExclusion("Microsoft.CodeAnalysis.CSharp", "Ibc TypeToken 6200019a has type token which resolves to a nil token", crossgen2Only: true), new FrameworkExclusion("Microsoft.CodeAnalysis", "Ibc TypeToken 620001af unable to find external typedef", crossgen2Only: true), new FrameworkExclusion("Microsoft.CodeAnalysis.VisualBasic", "Ibc TypeToken 620002ce unable to find external typedef", crossgen2Only: true), - - // TODO (TRylek): problem related to devirtualization of method without IL - System.Enum.Equals(object) - new FrameworkExclusion("System.ComponentModel.TypeConverter", "TODO trylek - devirtualization of method without IL", crossgen2Only: true), }; private readonly IEnumerable _buildFolders;