aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBin Cheng <bin.cheng@arm.com>2018-05-25 10:33:14 +0000
committerBin Cheng <amker@gcc.gnu.org>2018-05-25 10:33:14 +0000
commit34f7080eb0d738c4f27d7990907172eb907055be (patch)
tree2cc125d207ea19c6097c7a7932cae8daae7222cd /gcc
parentbcf253d51e5e5f24eee3724cd46438948b5635f8 (diff)
downloadgcc-34f7080eb0d738c4f27d7990907172eb907055be.zip
gcc-34f7080eb0d738c4f27d7990907172eb907055be.tar.gz
gcc-34f7080eb0d738c4f27d7990907172eb907055be.tar.bz2
* tree-ssa-live.h (live_merge_and_clear): Delete.
From-SVN: r260746
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree-ssa-live.h12
2 files changed, 4 insertions, 12 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5772452..4ce52ef 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2018-05-25 Bin Cheng <bin.cheng@arm.com>
+
+ * tree-ssa-live.h (live_merge_and_clear): Delete.
+
2018-05-25 Richard Biener <rguenther@suse.de>
PR c++/85912
diff --git a/gcc/tree-ssa-live.h b/gcc/tree-ssa-live.h
index e62293b..448aaf9 100644
--- a/gcc/tree-ssa-live.h
+++ b/gcc/tree-ssa-live.h
@@ -289,18 +289,6 @@ live_var_map (tree_live_info_p live)
}
-/* Merge the live on entry information in LIVE for partitions P1 and P2. Place
- the result into P1. Clear P2. */
-
-static inline void
-live_merge_and_clear (tree_live_info_p live, int p1, int p2)
-{
- gcc_checking_assert (&live->livein[p1] && &live->livein[p2]);
- bitmap_ior_into (&live->livein[p1], &live->livein[p2]);
- bitmap_clear (&live->livein[p2]);
-}
-
-
/* Mark partition P as live on entry to basic block BB in LIVE. */
static inline void