From 50ae5feab3e1ab395d895829877ffc1dd9ec3d06 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Fri, 19 Jun 2009 15:53:07 +0000 Subject: * rtl.h (SUBREG_PROMOTED_UNSIGNED_P): Add cast to int. From-SVN: r148712 --- gcc/rtl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/rtl.h') diff --git a/gcc/rtl.h b/gcc/rtl.h index de9d9a8..637c227 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. */ -- cgit v1.1