diff options
author | Eric Botcazou <ebotcazou@libertysurf.fr> | 2004-11-22 19:32:26 +0100 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2004-11-22 18:32:26 +0000 |
commit | 167a1354b34d35c26feb63f511e58cd7698e40ce (patch) | |
tree | af0f69e325352ab0ca5136544bfcb88d1dfa0d4c /gcc | |
parent | 4e596a097d6d14a5f03ec8d8c2b9ae0a84e9f958 (diff) | |
download | gcc-167a1354b34d35c26feb63f511e58cd7698e40ce.zip gcc-167a1354b34d35c26feb63f511e58cd7698e40ce.tar.gz gcc-167a1354b34d35c26feb63f511e58cd7698e40ce.tar.bz2 |
* config/sparc/sparc.c (mem_min_alignment): Check MEM_ALIGN.
From-SVN: r91021
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.c | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 62833b2..3f81dc7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-11-22 Eric Botcazou <ebotcazou@libertysurf.fr> + + * config/sparc/sparc.c (mem_min_alignment): Check MEM_ALIGN. + 2004-11-22 David Edelsohn <edelsohn@gnu.org> * config/rs6000/power4.md: Remove delay between dispatch and issue diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index 69c3bc5..dcacae2 100644 --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -3983,6 +3983,12 @@ mem_min_alignment (rtx mem, int desired) if (GET_CODE (mem) != MEM) return 0; + /* Obviously... */ + if (MEM_ALIGN (mem) / BITS_PER_UNIT >= (unsigned)desired) + return 1; + + /* ??? The rest of the function predates MEM_ALIGN so + there is probably a bit of redundancy. */ addr = XEXP (mem, 0); base = offset = NULL_RTX; if (GET_CODE (addr) == PLUS) |