* emit-rtl.c (get_mem_attrs): Fix typo.

From-SVN: r47213
This commit is contained in:
Richard Kenner 2001-11-20 11:50:23 +00:00 committed by Richard Kenner
parent 2dbd62fff2
commit 916f389ba0
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Tue Nov 20 06:41:38 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* emit-rtl.c (get_mem_attrs): Fix typo.
2001-11-20 Jakub Jelinek <jakub@redhat.com>
* c-lang.c (finish_file): Backout 2001-11-16

View File

@ -290,7 +290,7 @@ get_mem_attrs (alias, decl, offset, size, align, mode)
if (alias == 0 && decl == 0 && offset == 0
&& (size == 0
|| (mode != BLKmode && GET_MODE_SIZE (mode) == INTVAL (size)))
&& (align == 1
&& (align == BITS_PER_UNIT
|| (mode != BLKmode && align == GET_MODE_ALIGNMENT (mode))))
return 0;