Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Ayers <andya@microsoft.com>2021-05-28 22:00:01 +0300
committerGitHub <noreply@github.com>2021-05-28 22:00:01 +0300
commitd43e88620fe574045f026a4ebce50f7a8541347a (patch)
tree0f0964711e0116383fb68cda97725f28892351f0 /src/coreclr/inc
parent72ff0df4638ced1cc2b15c92c055f842c51e32d2 (diff)
Add new devirt reason. (#53334)
Diffstat (limited to 'src/coreclr/inc')
-rw-r--r--src/coreclr/inc/corinfo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/coreclr/inc/corinfo.h b/src/coreclr/inc/corinfo.h
index 231b669ebee..c2fde45f84f 100644
--- a/src/coreclr/inc/corinfo.h
+++ b/src/coreclr/inc/corinfo.h
@@ -1614,6 +1614,7 @@ enum CORINFO_DEVIRTUALIZATION_DETAIL
CORINFO_DEVIRTUALIZATION_FAILED_SUBCLASS, // object not subclass of base class
CORINFO_DEVIRTUALIZATION_FAILED_SLOT, // virtual method installed via explicit override
CORINFO_DEVIRTUALIZATION_FAILED_BUBBLE, // devirtualization crossed version bubble
+ CORINFO_DEVIRTUALIZATION_MULTIPLE_IMPL, // object has multiple implementations of interface class
CORINFO_DEVIRTUALIZATION_COUNT, // sentinel for maximum value
};