You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/coreclr/vm/multicorejitimpl.h
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ const unsigned MODULE_MASK = 0xffff; // mask to get module index
33
33
constunsigned MODULE_LEVEL_OFFSET = 16; // offset of module load level
34
34
constunsigned MAX_MODULE_LEVELS = 0x100; // maximum allowed number of module levels (2^8 values)
35
35
36
-
constunsigned MAX_METHODS = 0xffff; // Maximum allowed number of methods (2^16-1 values)
36
+
constunsigned MAX_METHODS = 0xffff; // Maximum allowed number of methods (2^16-1 values) (in principle this is also limited by "unsigned short" counters)
37
37
38
38
constunsigned SIGNATURE_LENGTH_MASK = 0xffff; // mask to get signature from packed data (2^16-1 max signature length)
0 commit comments