diff options
Diffstat (limited to 'gcc/cp/expr.c')
-rw-r--r-- | gcc/cp/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/expr.c b/gcc/cp/expr.c index bda84000141..7411a4eaa0d 100644 --- a/gcc/cp/expr.c +++ b/gcc/cp/expr.c @@ -139,7 +139,7 @@ cplus_expand_expr (exp, target, tmode, modifier) call_target = validize_mem (call_target); } - call_exp = build (CALL_EXPR, type, func, args, 0); + call_exp = build (CALL_EXPR, type, func, args, NULL_TREE); TREE_SIDE_EFFECTS (call_exp) = 1; return_target = expand_call (call_exp, call_target, ignore); if (call_target == 0) |