Commit 4ce580a2 by Richard Earnshaw Committed by Richard Earnshaw

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
parent 1f01879e
Fri Dec 17 10:34:16 1999 Richard Earnshaw <rearnsha@arm.com>
* loop.c (insert_loop_mem): Don't record MEMs from inside
EXPR_LISTs.
Fri Dec 17 12:08:11 MET 1999 Jan Hubicka <hubicka@freesoftr.cz>
* regclass.c (regclass): Do not use flowgraph when not optimizing.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment