From 5c94055501c7dbe98fbc9b05304c7f5f13a7d8fe Mon Sep 17 00:00:00 2001 From: Fei Peng Date: Fri, 19 Jan 2018 22:08:03 -0800 Subject: [PATCH] #if defined(_TARGET_XARCH_) || defined(_TARGET_ARM64_) --- src/jit/compiler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jit/compiler.h b/src/jit/compiler.h index 9cc119a..dd11231 100644 --- a/src/jit/compiler.h +++ b/src/jit/compiler.h @@ -7979,7 +7979,7 @@ private: bool compSupports(InstructionSet isa) const { -#if defined(_TARGET_XARCH_) | defined(_TARGET_ARM64_) +#if defined(_TARGET_XARCH_) || defined(_TARGET_ARM64_) return (opts.compSupportsISA & (1ULL << isa)) != 0; #else return false; @@ -8105,7 +8105,7 @@ public: bool compCanUseSSE4; // Allow CodeGen to use SSE3, SSSE3, SSE4.1 and SSE4.2 instructions #endif // _TARGET_XARCH_ -#if defined(_TARGET_XARCH_) | defined(_TARGET_ARM64_) +#if defined(_TARGET_XARCH_) || defined(_TARGET_ARM64_) uint64_t compSupportsISA; void setSupportedISA(InstructionSet isa) { -- 2.7.4