summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames E Wilson <wilson@specifixinc.com>2005-04-07 04:24:53 +0000
committerJim Wilson <wilson@gcc.gnu.org>2005-04-06 21:24:53 -0700
commitc7bcbc2c40c503b9c04e140cba5d0f605719426a (patch)
treea4479cdd2699890bf76953fc9ed4670c1d206736
parent5305b1ae1b21669f5bb0c91c8b80ab5d5b789234 (diff)
downloadgcc-c7bcbc2c40c503b9c04e140cba5d0f605719426a.tar.gz
Fix numerous IA-64 C++ failures, IA-64 bootstrap trouble.
PR target/20717 * cgraphunit.c (record_call_1, case FDESC_EXPR): Handle same as ADDR_EXPR. From-SVN: r97773
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/cgraphunit.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index cfca3d6a61e..f6695a2f640 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2005-04-06 James E Wilson <wilson@specifixinc.com>
+
+ PR target/20717
+ * cgraphunit.c (record_call_1, case FDESC_EXPR): Handle same as
+ ADDR_EXPR.
+
2004-04-06 Richard Sandiford <rsandifo@redhat.com>
* coverage.h (GCOV_TYPE_NODE): Delete.
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c
index 528b7da9736..406e0c1ef70 100644
--- a/gcc/cgraphunit.c
+++ b/gcc/cgraphunit.c
@@ -489,6 +489,7 @@ record_call_1 (tree *tp, int *walk_subtrees, void *data)
}
break;
+ case FDESC_EXPR:
case ADDR_EXPR:
if (flag_unit_at_a_time)
{