summaryrefslogtreecommitdiff
path: root/src/vm/amd64
diff options
context:
space:
mode:
authorsergey ignatov <sergign60@mail.ru>2018-09-01 17:40:44 +0300
committerJan Kotas <jkotas@microsoft.com>2018-09-01 07:40:44 -0700
commita1757ce8e80cd089d9dc31ba2d4e3246e387a6b8 (patch)
tree5de828b15ed9dc639fd5b3215833836d613c0c57 /src/vm/amd64
parentd71ed81a4b9ec9d89bcb5c35174ff60d0991c79c (diff)
downloadcoreclr-a1757ce8e80cd089d9dc31ba2d4e3246e387a6b8.tar.gz
coreclr-a1757ce8e80cd089d9dc31ba2d4e3246e387a6b8.tar.bz2
coreclr-a1757ce8e80cd089d9dc31ba2d4e3246e387a6b8.zip
i386: Fixed definition with declaration in eetoprofinterfaceimpl.cpp (#18792)
Diffstat (limited to 'src/vm/amd64')
-rw-r--r--src/vm/amd64/unixstubs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vm/amd64/unixstubs.cpp b/src/vm/amd64/unixstubs.cpp
index 83764e0a22..e592193910 100644
--- a/src/vm/amd64/unixstubs.cpp
+++ b/src/vm/amd64/unixstubs.cpp
@@ -53,8 +53,8 @@ extern "C"
// check OS has enabled both XMM and YMM state support
return ((eax & 0x06) == 0x06) ? 1 : 0;
}
-
- void STDCALL JIT_ProfilerEnterLeaveTailcallStub(UINT_PTR ProfilerHandle)
+
+ void STDMETHODCALLTYPE JIT_ProfilerEnterLeaveTailcallStub(UINT_PTR ProfilerHandle)
{
}
};