summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Ignatov <sergign60@mail.ru>2018-07-05 20:29:00 +0300
committerGleb Balykov/AI Ecosystem Lab /SRR/Engineer/삼성전자 <g.balykov@samsung.com>2018-07-09 17:33:47 +0300
commita3320ec0fa3da79a6e90ed02252bd7c5566121f4 (patch)
tree43ffe838db02a48a179e5166c86410d535edc3cd
parent59d8b62857e6bd8759a3f75380bce436be6757fb (diff)
downloadcoreclr-a3320ec0fa3da79a6e90ed02252bd7c5566121f4.tar.gz
coreclr-a3320ec0fa3da79a6e90ed02252bd7c5566121f4.tar.bz2
coreclr-a3320ec0fa3da79a6e90ed02252bd7c5566121f4.zip
i386: Fixed declaration in eetoprofinterfaceimpl.cpp with definition
-rw-r--r--src/vm/i386/unixstubs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vm/i386/unixstubs.cpp b/src/vm/i386/unixstubs.cpp
index 2a7b3af835..71cbceabb2 100644
--- a/src/vm/i386/unixstubs.cpp
+++ b/src/vm/i386/unixstubs.cpp
@@ -6,17 +6,17 @@
extern "C"
{
- void ProfileEnterNaked(FunctionIDOrClientID functionIDOrClientID)
+ void __stdcall ProfileEnterNaked(FunctionIDOrClientID functionIDOrClientID)
{
PORTABILITY_ASSERT("Implement for PAL");
}
- void ProfileLeaveNaked(FunctionIDOrClientID functionIDOrClientID)
+ void __stdcall ProfileLeaveNaked(FunctionIDOrClientID functionIDOrClientID)
{
PORTABILITY_ASSERT("Implement for PAL");
}
- void ProfileTailcallNaked(FunctionIDOrClientID functionIDOrClientID)
+ void __stdcall ProfileTailcallNaked(FunctionIDOrClientID functionIDOrClientID)
{
PORTABILITY_ASSERT("Implement for PAL");
}