Deleted Added
full compact
decl.c (171835) decl.c (220150)
1/* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4 Contributed by Michael Tiemann (tiemann@cygnus.com)
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify

--- 11259 unchanged lines hidden (view full) ---

11268 }
11269 poplevel (1, 0, 1);
11270
11271 /* Statements should always be full-expressions at the outermost set
11272 of curly braces for a function. */
11273 gcc_assert (stmts_are_full_exprs_p ());
11274
11275 /* Set up the named return value optimization, if we can. Candidate
1/* Process declarations and variables for C++ compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4 Contributed by Michael Tiemann (tiemann@cygnus.com)
5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify

--- 11259 unchanged lines hidden (view full) ---

11268 }
11269 poplevel (1, 0, 1);
11270
11271 /* Statements should always be full-expressions at the outermost set
11272 of curly braces for a function. */
11273 gcc_assert (stmts_are_full_exprs_p ());
11274
11275 /* Set up the named return value optimization, if we can. Candidate
11276 variables are selected in check_return_value. */
11276 variables are selected in check_return_expr. */
11277 if (current_function_return_value)
11278 {
11279 tree r = current_function_return_value;
11280 tree outer;
11281
11282 if (r != error_mark_node
11283 /* This is only worth doing for fns that return in memory--and
11284 simpler, since we don't have to worry about promoted modes. */

--- 477 unchanged lines hidden ---
11277 if (current_function_return_value)
11278 {
11279 tree r = current_function_return_value;
11280 tree outer;
11281
11282 if (r != error_mark_node
11283 /* This is only worth doing for fns that return in memory--and
11284 simpler, since we don't have to worry about promoted modes. */

--- 477 unchanged lines hidden ---