diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-01-17 22:00:51 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-17 15:00:51 -0700 |
commit | 4399e7a3244b22aeebef9ceb85d978769709ad47 (patch) | |
tree | ed9a0a5d3a557dd2a6f3e2408fe35544fa38499b /gcc/rtl.c | |
parent | 72ec635f5a09e342acee7752e305be4b49023fee (diff) | |
download | gcc-4399e7a3244b22aeebef9ceb85d978769709ad47.zip gcc-4399e7a3244b22aeebef9ceb85d978769709ad47.tar.gz gcc-4399e7a3244b22aeebef9ceb85d978769709ad47.tar.bz2 |
* rtl.c (read_rtx): Initialize list_rtx to NULL, not NULL_RTX.
From-SVN: r17400
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 != '[') |