From ebe79e053634419f5c73c2b7e40ab1401788b403 Mon Sep 17 00:00:00 2001 From: Jonghyun Park Date: Fri, 14 Apr 2017 23:34:07 +0900 Subject: [PATCH] [x86/Linux] Use appropriate FCALL macro for DoToDecimal (dotnet/coreclr#10963) Commit migrated from https://github.com/dotnet/coreclr/commit/4c6f23eb3d1ee0e39d6df44ed573f6a0132f71fc --- src/coreclr/src/classlibnative/bcltype/currency.cpp | 2 +- src/coreclr/src/classlibnative/bcltype/currency.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.7.4