[x86/Linux] Use appropriate FCALL macro for DoToDecimal (dotnet/coreclr#10963)
authorJonghyun Park <parjong@gmail.com>
Fri, 14 Apr 2017 14:34:07 +0000 (23:34 +0900)
committerJan Kotas <jkotas@microsoft.com>
Fri, 14 Apr 2017 14:34:07 +0000 (07:34 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/4c6f23eb3d1ee0e39d6df44ed573f6a0132f71fc

src/coreclr/src/classlibnative/bcltype/currency.cpp
src/coreclr/src/classlibnative/bcltype/currency.h

index 928a903..4506105 100644 (file)
@@ -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;
 
index 00c3e8d..a1ba64e 100644 (file)
@@ -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 <poppack.h>