Skip to content
Snippets Groups Projects
Commit 023112c6 authored by Brad Smith's avatar Brad Smith
Browse files

aarch64: defines involving bit shifts should be unsigned

parent da14df55
No related branches found
No related tags found
No related merge requests found
Pipeline #529901 passed with stages
in 3 minutes and 46 seconds
......@@ -459,8 +459,8 @@ uint32_t x264_cpu_detect( void )
#if defined(__linux__) || HAVE_ELF_AUX_INFO
#define HWCAP_AARCH64_SVE (1 << 22)
#define HWCAP2_AARCH64_SVE2 (1 << 1)
#define HWCAP_AARCH64_SVE (1U << 22)
#define HWCAP2_AARCH64_SVE2 (1U << 1)
static uint32_t detect_flags( void )
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment