diff options
author | Richard Stallman <rms@gnu.org> | 1993-11-23 06:19:09 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-11-23 06:19:09 +0000 |
commit | 0e5eedfeb07de9302f853038fb3a94f8086558ec (patch) | |
tree | 91432cd665373f8d28a01ec9c89427e4ec28ec63 /gcc/c-decl.c | |
parent | c31e0b8bb1c83c78badf74a9463ad4c09bdf9db2 (diff) | |
download | gcc-0e5eedfeb07de9302f853038fb3a94f8086558ec.zip gcc-0e5eedfeb07de9302f853038fb3a94f8086558ec.tar.gz gcc-0e5eedfeb07de9302f853038fb3a94f8086558ec.tar.bz2 |
(finish_function): Pass new arg to expand_function_end.
Don't call expand_end_bindings here.
From-SVN: r6140
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index bb2ad12..7a18d44 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -6450,7 +6450,7 @@ finish_function (nested) #endif /* Generate rtl for function exit. */ - expand_function_end (input_filename, lineno); + expand_function_end (input_filename, lineno, 0); /* So we can tell if jump_optimize sets it to 1. */ can_reach_end = 0; |