From: Uros Bizjak Date: Wed, 22 Sep 2010 07:41:13 +0000 (+0200) Subject: i386.h (MAX_STRINGOP_ALGS): Fix typo in the name. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c69fa2d460106f691b14cf3bdd5d44cd8daa870a;p=gcc.git i386.h (MAX_STRINGOP_ALGS): Fix typo in the name. * config/i386/i386.h (MAX_STRINGOP_ALGS): Fix typo in the name. * config/i386/i386.c (decide_alg): Update for rename. From-SVN: r164509 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b67c71980d8..7c0856792a5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-09-22 Uros Bizjak + + * config/i386/i386.h (MAX_STRINGOP_ALGS): Fix typo in the name. + * config/i386/i386.c (decide_alg): Update for rename. + 2010-09-22 Jakub Jelinek PR rtl-optimization/45739 @@ -9,8 +14,7 @@ * config/rs6000/rs6000.h (OUTPUT_ADDR_CONST_EXTRA): Remove macros. * config/rs6000/rs6000-protos.h (rs6000_output_addr_const_extra): Remove. - * config/rs6000/rs6000.c (rs6000_output_addr_const_extra): Make - static. + * config/rs6000/rs6000.c (rs6000_output_addr_const_extra): Make static. (TTARGET_ASM_OUTPUT_ADDR_CONST_EXTRA): Define. 2010-09-21 Nicola Pero diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 748dd78185a..49c3c9c240c 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -19238,7 +19238,7 @@ decide_alg (HOST_WIDE_INT count, HOST_WIDE_INT expected_size, bool memset, { unsigned int i; enum stringop_alg alg = libcall; - for (i = 0; i < NAX_STRINGOP_ALGS; i++) + for (i = 0; i < MAX_STRINGOP_ALGS; i++) { /* We get here if the algorithms that were not libcall-based were rep-prefix based and we are unable to use rep prefixes @@ -19284,7 +19284,7 @@ decide_alg (HOST_WIDE_INT count, HOST_WIDE_INT expected_size, bool memset, int i; bool any_alg_usable_p = true; - for (i = 0; i < NAX_STRINGOP_ALGS; i++) + for (i = 0; i < MAX_STRINGOP_ALGS; i++) { enum stringop_alg candidate = algs->size[i].alg; any_alg_usable_p = any_alg_usable_p && ALG_USABLE_P (candidate); diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index aa246c6fdcc..f868f98f79b 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -90,7 +90,7 @@ enum stringop_alg unrolled_loop }; -#define NAX_STRINGOP_ALGS 4 +#define MAX_STRINGOP_ALGS 4 /* Specify what algorithm to use for stringops on known size. When size is unknown, the UNKNOWN_SIZE alg is used. When size is @@ -107,7 +107,7 @@ struct stringop_algs const struct stringop_strategy { const int max; const enum stringop_alg alg; - } size [NAX_STRINGOP_ALGS]; + } size [MAX_STRINGOP_ALGS]; }; /* Define the specific costs for a given cpu */