Commit c0f15a3f by Jan Hubicka Committed by Jan Hubicka

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

From-SVN: r218797
parent 061ddf67
2014-12-16 Jan Hubicka <hubicka@ucw.cz> 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>
* ipa-inline-analysis.c (will_be_nonconstant_predicate): Consider * ipa-inline-analysis.c (will_be_nonconstant_predicate): Consider
return values of const calls as constants. return values of const calls as constants.
(estimate_function_body_sizes): Expect calls to have false predicates. (estimate_function_body_sizes): Expect calls to have false predicates.
...@@ -211,7 +211,7 @@ public: ...@@ -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. */
......
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