diff options
author | Diego Novillo <dnovillo@redhat.com> | 2004-08-29 15:42:42 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2004-08-29 11:42:42 -0400 |
commit | 766ff1b11748f66da98c901b9498a90e72698c05 (patch) | |
tree | fcd1799790e1d7dc50550889d7cface318a63fd3 /gcc/tree-ssa-ccp.c | |
parent | 2435c4c1c8cc0a415821b89239a57f45df6dd968 (diff) | |
download | gcc-766ff1b11748f66da98c901b9498a90e72698c05.zip gcc-766ff1b11748f66da98c901b9498a90e72698c05.tar.gz gcc-766ff1b11748f66da98c901b9498a90e72698c05.tar.bz2 |
tree-ssa-ccp.c (ccp_visit_stmt): Remove #if 0 guards.
* tree-ssa-ccp.c (ccp_visit_stmt): Remove #if 0 guards.
* tree-ssa-propagate.c: Fix documentation.
From-SVN: r86726
Diffstat (limited to 'gcc/tree-ssa-ccp.c')
-rw-r--r-- | gcc/tree-ssa-ccp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/tree-ssa-ccp.c b/gcc/tree-ssa-ccp.c index 70a2dad..928e8c4 100644 --- a/gcc/tree-ssa-ccp.c +++ b/gcc/tree-ssa-ccp.c @@ -1168,10 +1168,8 @@ ccp_visit_stmt (tree stmt, edge *taken_edge_p, tree *output_p) /* Any other kind of statement is not interesting for constant propagation and, therefore, not worth simulating. */ -#if 0 if (dump_file && (dump_flags & TDF_DETAILS)) fprintf (dump_file, "No interesting values produced. Marked VARYING.\n"); -#endif /* Definitions made by statements other than assignments to SSA_NAMEs represent unknown modifications to their outputs. |