* fibonacci_heap.h (min): Return m_data instead of non-existing data.
authorJan Hubicka <hubicka@ucw.cz>
Tue, 16 Dec 2014 22:30:22 +0000 (23:30 +0100)
committerJan Hubicka <hubicka@gcc.gnu.org>
Tue, 16 Dec 2014 22:30:22 +0000 (22:30 +0000)
From-SVN: r218797

gcc/ChangeLog
gcc/fibonacci_heap.h

index da10096480462a38dcf97853a9d1a02eea3a21ee..54e7aa90a925a156cd18ac8673f60e484a7d9fbb 100644 (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>
 
        * ipa-inline-analysis.c (will_be_nonconstant_predicate): Consider
index 3fce3701737c552cc6b96fc3bf777c9ddc5a9d1a..5bbde26aef0447aa7bc7e3f58b10658406ec5a8b 100644 (file)
@@ -211,7 +211,7 @@ public:
     if (m_min == NULL)
       return NULL;
 
-    return m_min->data;
+    return m_min->m_data;
   }
 
   /* Replace data associated with NODE and replace it with DATA.  */