From 4399e7a3244b22aeebef9ceb85d978769709ad47 Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Sat, 17 Jan 1998 22:00:51 +0000 Subject: [PATCH] * rtl.c (read_rtx): Initialize list_rtx to NULL, not NULL_RTX. From-SVN: r17400 --- gcc/ChangeLog | 2 ++ gcc/rtl.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 299297dba09..e856c7f897a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -23,6 +23,8 @@ Sat Jan 17 21:24:16 1998 David T. McWherter Sat Jan 17 21:16:19 1998 Jeffrey A Law (law@cygnus.com) + * rtl.c (read_rtx): Initialize list_rtx to NULL, not NULL_RTX. + * loop.c (find_and_verify_loops): When attempting to move insns from inside the loop outside the loop, create a BARRIER if no suitable one was found. diff --git a/gcc/rtl.c b/gcc/rtl.c index 063ce79489d..c4486773c8a 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -665,7 +665,7 @@ read_rtx (infile) case 'E': { register struct rtx_list *next_rtx, *rtx_list_link; - struct rtx_list *list_rtx = NULL_RTX; + struct rtx_list *list_rtx = NULL; c = read_skip_spaces (infile); if (c != '[') -- 2.30.2