diff options
author | Michael Matz <matz@gcc.gnu.org> | 2010-10-15 12:22:28 +0000 |
---|---|---|
committer | Michael Matz <matz@gcc.gnu.org> | 2010-10-15 12:22:28 +0000 |
commit | 936fcef153175949f2bf0237da57e70416a543bf (patch) | |
tree | 16ce2873f2c2417c98766a901f721f30fb86f121 /gcc/cgraphunit.c | |
parent | 4069d5fbd13e96d5f241bb492212e30c70588dbe (diff) | |
download | gcc-936fcef153175949f2bf0237da57e70416a543bf.zip gcc-936fcef153175949f2bf0237da57e70416a543bf.tar.gz gcc-936fcef153175949f2bf0237da57e70416a543bf.tar.bz2 |
* cgraphunit.c (clone_of_p): Define unconditionally.
From-SVN: r165504
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index 7d4349a..2abcb67 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -396,7 +396,6 @@ cgraph_mark_if_needed (tree decl) cgraph_mark_needed_node (node); } -#ifdef ENABLE_CHECKING /* Return TRUE if NODE2 is equivalent to NODE or its clone. */ static bool clone_of_p (struct cgraph_node *node, struct cgraph_node *node2) @@ -405,7 +404,6 @@ clone_of_p (struct cgraph_node *node, struct cgraph_node *node2) node2 = node2->clone_of; return node2 != NULL; } -#endif /* Verify edge E count and frequency. */ |