From: Jonghyun Park Date: Fri, 14 Apr 2017 14:34:07 +0000 (+0900) Subject: [x86/Linux] Use appropriate FCALL macro for DoToDecimal (dotnet/coreclr#10963) X-Git-Tag: submit/tizen/20210909.063632~11030^2~7261 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ebe79e053634419f5c73c2b7e40ab1401788b403;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [x86/Linux] Use appropriate FCALL macro for DoToDecimal (dotnet/coreclr#10963) Commit migrated from https://github.com/dotnet/coreclr/commit/4c6f23eb3d1ee0e39d6df44ed573f6a0132f71fc --- diff --git a/src/coreclr/src/classlibnative/bcltype/currency.cpp b/src/coreclr/src/classlibnative/bcltype/currency.cpp index 928a903..4506105 100644 --- a/src/coreclr/src/classlibnative/bcltype/currency.cpp +++ b/src/coreclr/src/classlibnative/bcltype/currency.cpp @@ -16,7 +16,7 @@ #include "string.h" -FCIMPL2(void, COMCurrency::DoToDecimal, DECIMAL * result, CY c) +FCIMPL2_IV(void, COMCurrency::DoToDecimal, DECIMAL * result, CY c) { FCALL_CONTRACT; diff --git a/src/coreclr/src/classlibnative/bcltype/currency.h b/src/coreclr/src/classlibnative/bcltype/currency.h index 00c3e8d..a1ba64e 100644 --- a/src/coreclr/src/classlibnative/bcltype/currency.h +++ b/src/coreclr/src/classlibnative/bcltype/currency.h @@ -16,7 +16,7 @@ class COMCurrency { public: - static FCDECL2 (void, DoToDecimal, DECIMAL * result, CY c); + static FCDECL2_IV(void, DoToDecimal, DECIMAL * result, CY c); }; #include