aboutsummaryrefslogtreecommitdiffstats
path: root/src/ortho/gcc/ortho-lang-49.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ortho/gcc/ortho-lang-49.c')
-rw-r--r--src/ortho/gcc/ortho-lang-49.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/ortho/gcc/ortho-lang-49.c b/src/ortho/gcc/ortho-lang-49.c
index 1c127fdb1..6be55dabe 100644
--- a/src/ortho/gcc/ortho-lang-49.c
+++ b/src/ortho/gcc/ortho-lang-49.c
@@ -946,7 +946,7 @@ new_compare_op (enum ON_op_kind kind, tree left, tree right, tree ntype)
}
tree
-new_convert_ov (tree val, tree rtype)
+new_convert (tree val, tree rtype)
{
tree val_type;
enum tree_code val_code;
@@ -1009,6 +1009,12 @@ new_convert_ov (tree val, tree rtype)
}
tree
+new_convert_ov (tree val, tree rtype)
+{
+ return new_convert (val, rtype);
+}
+
+tree
new_alloca (tree rtype, tree size)
{
tree res;