Commit 7b227604 by Anthony Green Committed by Anthony Green

* jcf-depend.c (add_entry): Fix test for first list entry.

From-SVN: r32072
parent 64e92991
2000-02-19 Anthony Green <green@cygnus.com>
* jcf-depend.c (add_entry): Fix test for first list entry.
Sat Feb 19 18:43:13 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* class.c (build_class_ref, push_super_field): Set DECL_SIZE_UNIT.
......
......@@ -94,7 +94,7 @@ add_entry (entp, name)
ent->file = xstrdup (name);
ent->next = NULL;
if (last == ent)
if (last == *entp)
{
// This is only true the first time through, when the entry list
// is empty.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment