[BugFix] Fix compile memcpy_inlined_overflow16 on ARM (backport #62478) (#62493)

Signed-off-by: zihe.liu <ziheliu1024@gmail.com>
Co-authored-by: zihe.liu <ziheliu1024@gmail.com>
This commit is contained in:
mergify[bot] 2025-08-29 03:11:42 +00:00 committed by GitHub
parent 76225c9a6f
commit bf3c758a1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View File

@ -19,6 +19,9 @@
#ifdef __SSE2__
#include <emmintrin.h>
#include <immintrin.h>
#elif defined(__ARM_NEON) && defined(__aarch64__)
#include <arm_acle.h>
#include <arm_neon.h>
#endif
#include <cstddef>

View File

@ -19,7 +19,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the Chromium source repository LICENSE file.
#if defined(__SSE4_2__) && defined(__PCLMUL__)
#include <x86intrin.h>
#endif
#include <cstdint>