Re: [PATCH GCC]Fix typo in definition of macro AUTO_INC_DEC in rtl.h

2013-04-03 Thread Richard Biener
On Wed, Apr 3, 2013 at 3:38 AM, Bin Cheng bin.ch...@arm.com wrote: Hi, When I look into code of auto-inc-dec.c in GCC, I found this typo in rtl.h, as #if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) \ || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT) \

RE: [PATCH GCC]Fix typo in definition of macro AUTO_INC_DEC in rtl.h

2013-04-03 Thread Bin Cheng
-Original Message- From: Richard Biener [mailto:richard.guent...@gmail.com] Sent: Wednesday, April 03, 2013 5:36 PM To: Bin Cheng Cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH GCC]Fix typo in definition of macro AUTO_INC_DEC in rtl.h On Wed, Apr 3, 2013 at 3:38 AM, Bin Cheng

[PATCH GCC]Fix typo in definition of macro AUTO_INC_DEC in rtl.h

2013-04-02 Thread Bin Cheng
Hi, When I look into code of auto-inc-dec.c in GCC, I found this typo in rtl.h, as #if (defined (HAVE_PRE_INCREMENT) || defined (HAVE_PRE_DECREMENT) \ || defined (HAVE_POST_INCREMENT) || defined (HAVE_POST_DECREMENT) \ || defined (HAVE_PRE_MODIFY_DISP) || defined (HAVE_PRE_MODIFY_DISP) \

RE: [PATCH GCC]Fix typo in definition of macro AUTO_INC_DEC in rtl.h

2013-04-02 Thread Bin Cheng
-Original Message- From: gcc-patches-ow...@gcc.gnu.org [mailto:gcc-patches-ow...@gcc.gnu.org] On Behalf Of Bin Cheng Sent: Wednesday, April 03, 2013 9:38 AM To: gcc-patches@gcc.gnu.org Subject: [PATCH GCC]Fix typo in definition of macro AUTO_INC_DEC in rtl.h Hi, When I look