From: Michael Beck Date: Sat, 25 Mar 2006 11:08:20 +0000 (+0000) Subject: BugFix: use new get_ia32_immop_type() instead of get_ia32_op_type() X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=d0062c4ced4be8d3b3897619ff8e49a8a4d83584;p=libfirm BugFix: use new get_ia32_immop_type() instead of get_ia32_op_type() --- diff --git a/ir/be/ia32/ia32_new_nodes.c b/ir/be/ia32/ia32_new_nodes.c index 805281eab..247a69317 100644 --- a/ir/be/ia32/ia32_new_nodes.c +++ b/ir/be/ia32/ia32_new_nodes.c @@ -933,7 +933,7 @@ void copy_ia32_Immop_attr(ir_node *dst, ir_node *src) { ia32_attr_t *da = get_ia32_attr(dst); ia32_attr_t *sa = get_ia32_attr(src); - switch(get_ia32_op_type(src)) { + switch(get_ia32_immop_type(src)) { case ia32_ImmConst: da->cnst_val.tv = sa->cnst_val.tv; da->cnst = sa->cnst;