Commit f2d28b14 by Catherine Moore Committed by Catherine Moore

v850.c (v850_va_arg): Use addr instead of valist to build incr.

        * config/v850/v850.c (v850_va_arg):  Use addr
        instead of valist to build incr.

From-SVN: r44366
parent 6e64a52a
2001-07-25 Catherine Moore <clm@redhat.com>
* config/v850/v850.c (v850_va_arg): Use addr
instead of valist to build incr.
Wed Jul 25 22:48:59 CEST 2001 Jan Hubicka <jh@suse.cz>
* flow.c (delete_dead_jumptables): New function.
......
......@@ -2778,7 +2778,7 @@ v850_va_arg (valist, type)
}
addr = save_expr (valist);
incr = fold (build (PLUS_EXPR, ptr_type_node, valist,
incr = fold (build (PLUS_EXPR, ptr_type_node, addr,
build_int_2 (rsize, 0)));
incr = build (MODIFY_EXPR, ptr_type_node, valist, incr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment