summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Ignatov <sergign60@mail.ru>2018-07-05 20:29:00 +0300
committerGleb Balykov <g.balykov@samsung.com>2018-09-18 15:49:14 +0300
commitf3779d1c78055bd393a8e6889aacd457f7aef635 (patch)
treecae08163ef1c0fef1b2d1046973a049ded27e33c
parent49af1c9f1f2a376d5b1db8c8865a3b609e018433 (diff)
downloadcoreclr-f3779d1c78055bd393a8e6889aacd457f7aef635.tar.gz
coreclr-f3779d1c78055bd393a8e6889aacd457f7aef635.tar.bz2
coreclr-f3779d1c78055bd393a8e6889aacd457f7aef635.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");
}