diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-03-29 12:36:07 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-03-29 05:36:07 -0700 |
commit | 994ac65bd0e52b77549099fd39e31c1a2ed8a567 (patch) | |
tree | ad3676c864462ee957b6e3fc36bd5ada5986b59f /gcc/cp/expr.c | |
parent | 942632ac1b55d893c57fe62d4e96c12f2c47f105 (diff) | |
download | gcc-994ac65bd0e52b77549099fd39e31c1a2ed8a567.zip gcc-994ac65bd0e52b77549099fd39e31c1a2ed8a567.tar.gz gcc-994ac65bd0e52b77549099fd39e31c1a2ed8a567.tar.bz2 |
* expr.c (tree_extract_aggr_init): #if 0 out.
From-SVN: r18899
Diffstat (limited to 'gcc/cp/expr.c')
-rw-r--r-- | gcc/cp/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/expr.c b/gcc/cp/expr.c index 50159cd..43be1a8 100644 --- a/gcc/cp/expr.c +++ b/gcc/cp/expr.c @@ -28,8 +28,8 @@ Boston, MA 02111-1307, USA. */ #include "expr.h" #include "cp-tree.h" -static tree extract_aggr_init PROTO((tree, tree)); #if 0 +static tree extract_aggr_init PROTO((tree, tree)); static tree extract_scalar_init PROTO((tree, tree)); #endif static rtx cplus_expand_expr PROTO((tree, rtx, enum machine_mode, @@ -238,6 +238,7 @@ fixup_result_decl (decl, result) } } +#if 0 /* Expand this initialization inline and see if it's simple enough that it can be done at compile-time. */ @@ -248,7 +249,6 @@ extract_aggr_init (decl, init) return 0; } -#if 0 static tree extract_scalar_init (decl, init) tree decl, init; |