* fibonacci_heap.h (min): Return m_data instead of non-existing data.

From-SVN: r218797
This commit is contained in:
Jan Hubicka 2014-12-16 23:30:22 +01:00 committed by Jan Hubicka
parent 061ddf67f7
commit c0f15a3f24
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-12-16 Jan Hubicka <hubicka@ucw.cz>
* fibonacci_heap.h (min): Return m_data instead of non-existing data.
2014-12-16 Jan Hubicka <hubicka@ucw.cz> 2014-12-16 Jan Hubicka <hubicka@ucw.cz>
* ipa-inline-analysis.c (will_be_nonconstant_predicate): Consider * ipa-inline-analysis.c (will_be_nonconstant_predicate): Consider

View File

@ -211,7 +211,7 @@ public:
if (m_min == NULL) if (m_min == NULL)
return NULL; return NULL;
return m_min->data; return m_min->m_data;
} }
/* Replace data associated with NODE and replace it with DATA. */ /* Replace data associated with NODE and replace it with DATA. */