]> gcc.gnu.org Git - gcc.git/commitdiff
* rtl.c (read_rtx): Initialize list_rtx to NULL, not NULL_RTX.
authorJeffrey A Law <law@cygnus.com>
Sat, 17 Jan 1998 22:00:51 +0000 (22:00 +0000)
committerJeff Law <law@gcc.gnu.org>
Sat, 17 Jan 1998 22:00:51 +0000 (15:00 -0700)
From-SVN: r17400

gcc/ChangeLog
gcc/rtl.c

index 299297dba0978fa42569b05e2a6923a44a2afd9c..e856c7f897a07d0fb606a4dbade23bc1a96e0878 100644 (file)
@@ -23,6 +23,8 @@ Sat Jan 17 21:24:16 1998  David T. McWherter <dtm@waterw.com>
 
 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.
index 063ce79489d6f4de54edf2b99d8fccb4ac6b6720..c4486773c8a5ebc0dbeb9a4ad6be067208c52699 100644 (file)
--- 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 != '[')
This page took 0.073976 seconds and 5 git commands to generate.