This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] small speedup in cse.c




On Sat, 11 Sep 2004, Andrew Pinski wrote:

I noticed this when looking for other places to change HOST_WIDE_INT
to be HOST_WIDEST_FAST_INT.  I had just forgot to change this
occurrences when I changed the ones in hard-reg-set.h.

OK? Bootstrapped and tested on powerpc-apple-darwin.

Thanks,
Andrew Pinski

ChangeLog:
	else
	  {
-	    HOST_WIDE_INT in_table
+	    HOST_WIDEST_FAST_INT in_table
	      = TEST_HARD_REG_BIT (hard_regs_in_table, regno);

Uh, isn't the result of TEST_HARD_REG_BIT 0 or 1? If so, why is this HOST_WIDE_* to begin with?


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]