]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/gimple-builder.c
* gimple.h (gimple_build_assign_stat): Remove prototype.
[thirdparty/gcc.git] / gcc / gimple-builder.c
index 52176738afb6dbdef588453733d51d4844b0be46..8a0a9c2dab6c4c754bf26f720da0b3aaa39b163f 100644 (file)
@@ -66,7 +66,7 @@ build_assign (enum tree_code code, tree op1, int val, tree lhs)
   tree op2 = build_int_cst (TREE_TYPE (op1), val);
   if (lhs == NULL_TREE)
     lhs = make_ssa_name (get_expr_type (code, op1));
-  return gimple_build_assign_with_ops (code, lhs, op1, op2);
+  return gimple_build_assign (lhs, code, op1, op2);
 }
 
 gassign *
@@ -89,7 +89,7 @@ build_assign (enum tree_code code, tree op1, tree op2, tree lhs)
 {
   if (lhs == NULL_TREE)
     lhs = make_ssa_name (get_expr_type (code, op1));
-  return gimple_build_assign_with_ops (code, lhs, op1, op2);
+  return gimple_build_assign (lhs, code, op1, op2);
 }
 
 gassign *
@@ -120,7 +120,7 @@ build_type_cast (tree to_type, tree op, tree lhs)
 {
   if (lhs == NULL_TREE)
     lhs = make_ssa_name (to_type);
-  return gimple_build_assign_with_ops (NOP_EXPR, lhs, op);
+  return gimple_build_assign (lhs, NOP_EXPR, op);
 }
 
 gassign *