Commit 5d5c039f by Richard Guenther Committed by Richard Biener

trans.h (build1_v): Use build1, not build to build the void typed tree.

2005-12-02  Richard Guenther  <rguenther@suse.de>

        * trans.h (build1_v): Use build1, not build to build the
        void typed tree.

From-SVN: r107917
parent cc210577
2005-12-02 Richard Guenther <rguenther@suse.de>
* trans.h (build1_v): Use build1, not build to build the
void typed tree.
2005-12-01 Erik Schnetter <schnetter@aei.mpg.de>
* decl.c (gfc_match_old_kind_spec): Improve handling of old style
......
......@@ -576,7 +576,7 @@ struct lang_decl GTY(())
#define gfc_todo_error(args...) fatal_error("gfc_todo: Not Implemented: " args)
/* Build an expression with void type. */
#define build1_v(code, arg) build(code, void_type_node, arg)
#define build1_v(code, arg) build1(code, void_type_node, arg)
#define build2_v(code, arg1, arg2) build2(code, void_type_node, \
arg1, arg2)
#define build3_v(code, arg1, arg2, arg3) build3(code, void_type_node, \
......
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