diff options
author | Richard Henderson <rth@redhat.com> | 2004-02-19 14:39:55 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-02-19 14:39:55 -0800 |
commit | 4221057e8f2e0e6425b61952bc06b1904681bf69 (patch) | |
tree | 94df3d1c9f4ce657fd99d4dcc5822e2ca9695645 /gcc/tree-inline.c | |
parent | e5b792193379be3beab505f1a72fb4fedaf62e6b (diff) | |
download | gcc-4221057e8f2e0e6425b61952bc06b1904681bf69.zip gcc-4221057e8f2e0e6425b61952bc06b1904681bf69.tar.gz gcc-4221057e8f2e0e6425b61952bc06b1904681bf69.tar.bz2 |
Makefile.in (STRICT2_WARN): Add -Wno-variadic-macros.
* Makefile.in (STRICT2_WARN): Add -Wno-variadic-macros.
* tree.c (build0, build1, build2, build3, build4): Split out from...
(build): ... here. Call them.
* tree.h (build, _buildN1, _buildN2, _buildC1, _buildC2): New.
* convert.c (convert_to_integer): Remove extra build argument.
* tree-inline.c (expand_call_inline): Likewise.
ada/
* misc.c (record_code_position): Add third build arg for RTL_EXPR.
java/
* parse.y (switch_label): Use make_node for DEFAULT_EXPR.
From-SVN: r78126
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index ce0b415..42da58b 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -1377,7 +1377,7 @@ expand_call_inline (tree *tp, int *walk_subtrees, void *data) statements within the function to jump to. The type of the statement expression is the return type of the function call. */ stmt = NULL; - expr = build (BLOCK, TREE_TYPE (TREE_TYPE (fn)), stmt); + expr = build (BLOCK, TREE_TYPE (TREE_TYPE (fn))); #endif /* INLINER_FOR_JAVA */ /* Local declarations will be replaced by their equivalents in this |