diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-12-02 21:00:01 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-12-02 21:00:01 +0000 |
commit | 667144a0ebc627fa67d67e1719bd78dde10eacb1 (patch) | |
tree | 55fde300da01e2abe65ad56f6c8282f252151f7a /gcc/fortran/trans.h | |
parent | 4b5a641cce072d3e6f494b06f72c88447b3c3c85 (diff) | |
download | gcc-667144a0ebc627fa67d67e1719bd78dde10eacb1.tar.gz |
2005-12-02 Richard Guenther <rguenther@suse.de>
* trans.h (build1_v): Use build1, not build to build the
void typed tree.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107917 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fortran/trans.h')
-rw-r--r-- | gcc/fortran/trans.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/trans.h b/gcc/fortran/trans.h index 02fc2759609..e2c9f272985 100644 --- a/gcc/fortran/trans.h +++ b/gcc/fortran/trans.h @@ -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, \ |