Skip to content

Commit

Permalink
Update CheckCXXIntrinsicsHeader.cmake
Browse files Browse the repository at this point in the history
Small typo
  • Loading branch information
BastienVialla authored and kimlaine committed Feb 2, 2021
1 parent 4aac87b commit 7d30926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/CheckCXXIntrinsicsHeader.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT license.

# Check for intrin.h or x64intrin.h
# Check for intrin.h or x86intrin.h
if(SEAL_USE_INTRIN)
if(MSVC)
set(SEAL_INTRIN_HEADER "intrin.h")
Expand All @@ -19,7 +19,7 @@ if(SEAL_USE_INTRIN)
if(SEAL_ARM64)
set(SEAL_INTRIN_HEADER "arm_neon.h")
else()
set(SEAL_INTRIN_HEADER "x64intrin.h")
set(SEAL_INTRIN_HEADER "x86intrin.h")
endif()
endif()

Expand Down

0 comments on commit 7d30926

Please sign in to comment.