From 1993fb5e95c9709ea5209833c52b0fee83b4e83e Mon Sep 17 00:00:00 2001 From: Itaru Kitayama Date: Thu, 23 Feb 2017 18:18:57 -0600 Subject: [PATCH] Fix build warning --- common/src/arch-aarch64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/arch-aarch64.h b/common/src/arch-aarch64.h index c3c5d1b4c3..691e64665f 100644 --- a/common/src/arch-aarch64.h +++ b/common/src/arch-aarch64.h @@ -65,7 +65,7 @@ namespace NS_aarch64 { #define MIN_IMM8 (-32768) #define MAX_IMM8 (32767) -#define MAX_IMM16 (-65536) +#define MIN_IMM16 (-65536) #define MAX_IMM16 (65535) #define MIN_IMM32 (-2147483647 - 1) #define MAX_IMM32 (2147483647)