diff options
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtl.h b/gcc/rtl.h index de9d9a80753..637c227ec12 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -1120,7 +1120,7 @@ do { \ } while (0) #define SUBREG_PROMOTED_UNSIGNED_P(RTX) \ ((RTL_FLAG_CHECK1("SUBREG_PROMOTED_UNSIGNED_P", (RTX), SUBREG)->volatil) \ - ? -1 : (RTX)->unchanging) + ? -1 : (int) (RTX)->unchanging) /* Access various components of an ASM_OPERANDS rtx. */ |