]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
i386.h (MAX_STRINGOP_ALGS): Fix typo in the name.
authorUros Bizjak <uros@gcc.gnu.org>
Wed, 22 Sep 2010 07:41:13 +0000 (09:41 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Wed, 22 Sep 2010 07:41:13 +0000 (09:41 +0200)
* config/i386/i386.h (MAX_STRINGOP_ALGS): Fix typo in the name.
* config/i386/i386.c (decide_alg): Update for rename.

From-SVN: r164509

gcc/ChangeLog
gcc/config/i386/i386.c
gcc/config/i386/i386.h

index b67c71980d840eeb97d90b573878dae46c85c93d..7c0856792a5a8cdbba9c1f1fee4415a51a9e7e78 100644 (file)
@@ -1,3 +1,8 @@
+2010-09-22  Uros Bizjak  <ubizjak@gmail.com>
+
+       * 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  <jakub@redhat.com>
 
        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  <nicola.pero@meta-innovation.com>
index 748dd78185a931adff2099ff6fa6805183e204d5..49c3c9c240c7c81368681453a7e111897d29ba01 100644 (file)
@@ -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);
index aa246c6fdcc9ec8fba5a7732e520022167ac8026..f868f98f79bcd256a71aab19701f075446800f81 100644 (file)
@@ -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 */