* final.c (compute_alignments): Fix typo.
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 22 Aug 2001 08:04:15 +0000 (08:04 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 22 Aug 2001 08:04:15 +0000 (08:04 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45100 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/final.c

index 31aa114..e8c7eea 100644 (file)
@@ -1,5 +1,7 @@
 2001-08-21  Richard Henderson  <rth@redhat.com>
 
+       * final.c (compute_alignments): Fix typo.
+
        * expmed.c (CODE_FOR_insv, gen_insv): Provide defaults.
        (CODE_FOR_extv, gen_extv, CODE_FOR_extzv, gen_extzv): Likewise.
        (store_bit_field): Use mode_for_extraction more places.
index 745aca4..a07a568 100644 (file)
@@ -966,7 +966,7 @@ compute_alignments ()
     xcalloc (max_labelno - min_labelno + 1, sizeof (struct label_alignment));
 
   /* If not optimizing or optimizing for size, don't assign any alignments.  */
-  if (optimize || optimize_size)
+  if (optimize || optimize_size)
     return;
 
   for (i = 0; i < n_basic_blocks; i++)