summaryrefslogtreecommitdiff
path: root/gcc/rtl.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-01-17 22:00:51 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-01-17 22:00:51 +0000
commit851dcab90f155bda10cf266e460ae3728346a69b (patch)
treeed9a0a5d3a557dd2a6f3e2408fe35544fa38499b /gcc/rtl.c
parentbc770d213f3b695315029360016181e1c279e162 (diff)
downloadgcc-851dcab90f155bda10cf266e460ae3728346a69b.tar.gz
* rtl.c (read_rtx): Initialize list_rtx to NULL, not NULL_RTX.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17400 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r--gcc/rtl.c2
1 files changed, 1 insertions, 1 deletions
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 != '[')