aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2013-04-30 15:53:03 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2013-04-30 08:53:03 -0700
commitf91674c330f6b8708de246bef2eb6ae3e153426b (patch)
tree927e17417ca923d74ac2e613576349c4f30f39c0
parent3551257c5d24d5193edbdbc4604c1d995d50902b (diff)
downloadgcc-f91674c330f6b8708de246bef2eb6ae3e153426b.zip
gcc-f91674c330f6b8708de246bef2eb6ae3e153426b.tar.gz
gcc-f91674c330f6b8708de246bef2eb6ae3e153426b.tar.bz2
Remove the trayed debug_gimple_stmt
* value-prof.c (stream_in_histogram_value): Remove the trayed debug_gimple_stmt. From-SVN: r198457
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/value-prof.c1
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 02b77f9..86b524c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2013-04-30 H.J. Lu <hongjiu.lu@intel.com>
+
+ * value-prof.c (stream_in_histogram_value): Remove the trayed
+ debug_gimple_stmt.
+
2013-04-30 Richard Biener <rguenther@suse.de>
PR middle-end/57122
diff --git a/gcc/value-prof.c b/gcc/value-prof.c
index 3348d7f..b665b1c 100644
--- a/gcc/value-prof.c
+++ b/gcc/value-prof.c
@@ -416,7 +416,6 @@ stream_in_histogram_value (struct lto_input_block *ib, gimple stmt)
new_val->n_counters = ncounters;
for (i = 0; i < ncounters; i++)
new_val->hvalue.counters[i] = streamer_read_gcov_count (ib);
- debug_gimple_stmt (stmt);
if (!next_p)
gimple_add_histogram_value (cfun, stmt, new_val);
else