Commit c92293e7 by Catherine Moore Committed by Catherine Moore

haifa-sched.c (alloc_EXPR_LIST): Change to use unused_expr_list.

        * haifa-sched.c (alloc_EXPR_LIST):  Change to use
        unused_expr_list.

From-SVN: r20889
parent ee5b121e
Thu Jul 2 08:20:00 1998 Catherine Moore <clm@cygnus.com>
* haifa-sched.c (alloc_EXPR_LIST): Change to use
unused_expr_list.
Thu Jul 2 14:13:28 1998 Dave Love <d.love@dl.ac.uk>
* Makefile.in (install-info): Don't use $realfile. Ignore
......
......@@ -832,10 +832,10 @@ alloc_EXPR_LIST (kind, val, next)
{
rtx r;
if (unused_insn_list)
if (unused_expr_list)
{
r = unused_insn_list;
unused_insn_list = XEXP (r, 1);
r = unused_expr_list;
unused_expr_list = XEXP (r, 1);
XEXP (r, 0) = val;
XEXP (r, 1) = next;
PUT_REG_NOTE_KIND (r, kind);
......
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