Hi,

I was playing about with an old patch and found that
the implementation of create_gimple_tmp was removed by
this patch:

http://gcc.gnu.org/ml/gcc-patches/2013-09/msg01694.html

But that its declaration was left in gimple-builder.h.
A quick grep shows that this was the only remaining mention
of create_gimple_tmp.

I've checked in this obvious patch deleting the declaration as
revision 207127, after a bootstrap on x86_64 with no regressions.

Thanks,
James

---
2014-01-27  James Greenhalgh  <james.greenha...@arm.com>

        * gimple-builder.h (create_gimple_tmp): Delete.
diff --git a/gcc/gimple-builder.h b/gcc/gimple-builder.h
index a00d979..1b5afdc 100644
--- a/gcc/gimple-builder.h
+++ b/gcc/gimple-builder.h
@@ -21,7 +21,6 @@ along with GCC; see the file COPYING3.  If not see
 #ifndef GCC_GIMPLE_BUILDER_H
 #define GCC_GIMPLE_BUILDER_H
 
-tree create_gimple_tmp (tree, tree lhs = NULL_TREE);
 gimple build_assign (enum tree_code, tree, int, tree lhs = NULL_TREE);
 gimple build_assign (enum tree_code, gimple, int, tree lhs = NULL_TREE);
 gimple build_assign (enum tree_code, tree, tree, tree lhs = NULL_TREE);

Reply via email to