projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
72ec635
)
* rtl.c (read_rtx): Initialize list_rtx to NULL, not NULL_RTX.
author
Jeffrey A Law
<law@cygnus.com>
Sat, 17 Jan 1998 22:00:51 +0000
(22:00 +0000)
committer
Jeff Law
<law@gcc.gnu.org>
Sat, 17 Jan 1998 22:00:51 +0000
(15:00 -0700)
From-SVN: r17400
gcc/ChangeLog
patch
|
blob
|
history
gcc/rtl.c
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index 299297dba0978fa42569b05e2a6923a44a2afd9c..e856c7f897a07d0fb606a4dbade23bc1a96e0878 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-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.
diff --git
a/gcc/rtl.c
b/gcc/rtl.c
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 != '[')