diff options
author | Richard Earnshaw <rearnsha@arm.com> | 1999-12-17 15:37:35 +0000 |
---|---|---|
committer | Richard Earnshaw <rearnsha@gcc.gnu.org> | 1999-12-17 15:37:35 +0000 |
commit | 4ce580a2546209d06674e7106f88804693331fce (patch) | |
tree | 85eddaf251bbca22e0b3cbc211b342e1a37e3479 /gcc/loop.c | |
parent | 1f01879e43f387d04e0b64fa5dd2689289cd6531 (diff) | |
download | gcc-4ce580a2546209d06674e7106f88804693331fce.zip gcc-4ce580a2546209d06674e7106f88804693331fce.tar.gz gcc-4ce580a2546209d06674e7106f88804693331fce.tar.bz2 |
loop.c (insert_loop_mem): Don't record MEMs from inside EXPR_LISTs.
* loop.c (insert_loop_mem): Don't record MEMs from inside
EXPR_LISTs.
From-SVN: r30994
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -9652,6 +9652,10 @@ insert_loop_mem (mem, data) CONST_DOUBLE, so there's no need to traverse into this. */ return -1; + case EXPR_LIST: + /* We're not interested in any MEMs that only appear in notes. */ + return -1; + default: /* This is not a MEM. */ return 0; |