summaryrefslogtreecommitdiff
path: root/src/vm/methodtable.cpp
diff options
context:
space:
mode:
authorPat Gavlin <pagavlin@microsoft.com>2015-11-19 13:15:43 -0800
committerPat Gavlin <pagavlin@microsoft.com>2015-11-19 13:36:40 -0800
commit915d00bbdb22b60518a3f168afadd6679d1947b4 (patch)
tree1e2b3950d793499d897e4a09c50e9222455e1e0c /src/vm/methodtable.cpp
parent7b4e0b18f777ee5f7f48a4506e7dc1ba1b60dd97 (diff)
downloadcoreclr-915d00bbdb22b60518a3f168afadd6679d1947b4.tar.gz
coreclr-915d00bbdb22b60518a3f168afadd6679d1947b4.tar.bz2
coreclr-915d00bbdb22b60518a3f168afadd6679d1947b4.zip
Small cleanups in SysV classification.
- Clean up/clarify the logic in CEEInfo::getSystemVAmd64PassStructInRegisterDescriptor - Move a static helper function off of MethodTable
Diffstat (limited to 'src/vm/methodtable.cpp')
-rw-r--r--src/vm/methodtable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/methodtable.cpp b/src/vm/methodtable.cpp
index ca8ababd4f..f06138ad60 100644
--- a/src/vm/methodtable.cpp
+++ b/src/vm/methodtable.cpp
@@ -2316,7 +2316,7 @@ bool MethodTable::ClassifyEightBytes(SystemVStructRegisterPassingHelperPtr helpe
// If we have a field classification already, but there is a union, we must merge the classification type of the field. Returns the
// new, merged classification type.
/* static */
-SystemVClassificationType MethodTable::ReClassifyField(SystemVClassificationType originalClassification, SystemVClassificationType newFieldClassification)
+static SystemVClassificationType ReClassifyField(SystemVClassificationType originalClassification, SystemVClassificationType newFieldClassification)
{
_ASSERTE((newFieldClassification == SystemVClassificationTypeInteger) ||
(newFieldClassification == SystemVClassificationTypeIntegerReference) ||