summaryrefslogtreecommitdiff
path: root/src/vm/jithelpers.cpp
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2016-12-05 17:02:25 +0900
committerJan Kotas <jkotas@microsoft.com>2016-12-05 00:02:25 -0800
commit3891c5f681eccd262f1ccca4bfa34a582573ce1d (patch)
tree46b693ed3fc4a85aaa366921526775e8d3adce9a /src/vm/jithelpers.cpp
parent9f84a04da21622944a96b2e77d3330910f5af263 (diff)
downloadcoreclr-3891c5f681eccd262f1ccca4bfa34a582573ce1d.tar.gz
coreclr-3891c5f681eccd262f1ccca4bfa34a582573ce1d.tar.bz2
coreclr-3891c5f681eccd262f1ccca4bfa34a582573ce1d.zip
[x86/Linux] Use Portable LMul JIT Helper (#8449)
Diffstat (limited to 'src/vm/jithelpers.cpp')
-rw-r--r--src/vm/jithelpers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vm/jithelpers.cpp b/src/vm/jithelpers.cpp
index be6ba8aa43..7b9389d5b6 100644
--- a/src/vm/jithelpers.cpp
+++ b/src/vm/jithelpers.cpp
@@ -130,7 +130,7 @@ inline UINT64 ShiftToHi32Bits(UINT32 x)
return ret.QuadPart;
}
-#if !defined(_TARGET_X86_)
+#if !defined(_TARGET_X86_) || defined(FEATURE_PAL)
/*********************************************************************/
HCIMPL2_VV(INT64, JIT_LMul, INT64 val1, INT64 val2)
{
@@ -145,7 +145,7 @@ HCIMPL2_VV(INT64, JIT_LMul, INT64 val1, INT64 val2)
return (val1 * val2);
}
HCIMPLEND
-#endif // !defined(_TARGET_X86_)
+#endif // !_TARGET_X86_ || FEATURE_PAL
/*********************************************************************/
HCIMPL2_VV(INT64, JIT_LMulOvf, INT64 val1, INT64 val2)