Skip to content

Commit

Permalink
[x86/Linux] Use Portable LMul JIT Helper (dotnet/coreclr#8449)
Browse files Browse the repository at this point in the history
Commit migrated from dotnet/coreclr@3891c5f
  • Loading branch information
parjong authored and jkotas committed Dec 5, 2016
1 parent 13a9269 commit 9e313c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coreclr/src/vm/jithelpers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand All @@ -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)
Expand Down

0 comments on commit 9e313c3

Please sign in to comment.