Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 5c94055

Browse files
committed
#if defined(_TARGET_XARCH_) || defined(_TARGET_ARM64_)
1 parent a4af006 commit 5c94055

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jit/compiler.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7979,7 +7979,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
79797979

79807980
bool compSupports(InstructionSet isa) const
79817981
{
7982-
#if defined(_TARGET_XARCH_) | defined(_TARGET_ARM64_)
7982+
#if defined(_TARGET_XARCH_) || defined(_TARGET_ARM64_)
79837983
return (opts.compSupportsISA & (1ULL << isa)) != 0;
79847984
#else
79857985
return false;
@@ -8105,7 +8105,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
81058105
bool compCanUseSSE4; // Allow CodeGen to use SSE3, SSSE3, SSE4.1 and SSE4.2 instructions
81068106
#endif // _TARGET_XARCH_
81078107

8108-
#if defined(_TARGET_XARCH_) | defined(_TARGET_ARM64_)
8108+
#if defined(_TARGET_XARCH_) || defined(_TARGET_ARM64_)
81098109
uint64_t compSupportsISA;
81108110
void setSupportedISA(InstructionSet isa)
81118111
{

0 commit comments

Comments
 (0)