aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2007-06-13 23:12:46 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2007-06-13 23:12:46 +0000
commit9c57e1e889c1e698e70c012fa3f205ac4ecb2cd2 (patch)
treedaaa20b27f2bdfb316658350cc0ab3ab430ba3a0 /gcc
parentefd7122b03d85b5ac13c705cf9376118e3ef959f (diff)
downloadgcc-9c57e1e889c1e698e70c012fa3f205ac4ecb2cd2.zip
gcc-9c57e1e889c1e698e70c012fa3f205ac4ecb2cd2.tar.gz
gcc-9c57e1e889c1e698e70c012fa3f205ac4ecb2cd2.tar.bz2
tree-ssa-pre.c (mergephitemp): Remove.
* tree-ssa-pre.c (mergephitemp): Remove. (init_pre): Don't use mergephitemp. From-SVN: r125687
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/tree-ssa-pre.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index dbf998a..b3de4bf 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -6,6 +6,9 @@
insn_locators_initialize.
* tree.h: Remove the prototype for emit_line_note.
+ * tree-ssa-pre.c (mergephitemp): Remove.
+ (init_pre): Don't use mergephitemp.
+
2007-06-13 Eric Christopher <echristo@apple.com>
* config/i386/i386.c (override_options): If we've specified
diff --git a/gcc/tree-ssa-pre.c b/gcc/tree-ssa-pre.c
index 6dfc166..7e47dd6 100644
--- a/gcc/tree-ssa-pre.c
+++ b/gcc/tree-ssa-pre.c
@@ -387,7 +387,6 @@ static struct obstack temp_call_expr_obstack;
match the current variable's type. */
static tree pretemp;
static tree storetemp;
-static tree mergephitemp;
static tree prephitemp;
/* Set of blocks with statements that have had its EH information
@@ -3746,7 +3745,6 @@ init_pre (bool do_fre)
need_creation = NULL;
pretemp = NULL_TREE;
storetemp = NULL_TREE;
- mergephitemp = NULL_TREE;
prephitemp = NULL_TREE;
vn_init ();