commit | eb725ff26371dfb5ae2523802c6abe75833cacef | [log] [tgz] |
---|---|---|
author | Aliaksey Kandratsenka <alk@tut.by> | Sun Aug 02 03:54:39 2015 |
committer | Aliaksey Kandratsenka <alk@tut.by> | Mon Aug 03 00:25:13 2015 |
tree | 932fdd3286ec0892f2bea72bf0b2d0aca9a77609 | |
parent | 53833298f3822b2b8b78c9dc85160d65d78a6857 [diff] |
unbreak heap-profiler-unittest on gcc 5 gcc 5 has got nice new optimization (-fipa-icf) which merges identical functions into one. And that causes heap-profiler_unittest to fail since it expects to see both Allocate and Allocate2 in heap profiles. And smart GCC detects that they are same function and makes one function out of two and thus breaks this test. New code simply adds (disabled) logging calls to make those functions non-identical.