aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/cp/ChangeLog5
-rw-r--r--gcc/cp/method.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index eef4d12..e656382 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-06 Dan Hipschman <dsh@google.com>
+
+ * method.c (use_thunk): Use DECL_NAME instead of DECL_RTL to
+ access function name.
+
2007-08-04 Alfred Minarik <a.minarik@aon.at>
PR pch/13676
diff --git a/gcc/cp/method.c b/gcc/cp/method.c
index 32cf586..f4b43a2 100644
--- a/gcc/cp/method.c
+++ b/gcc/cp/method.c
@@ -430,7 +430,7 @@ use_thunk (tree thunk_fndecl, bool emit_p)
current_function_decl = thunk_fndecl;
DECL_RESULT (thunk_fndecl)
= build_decl (RESULT_DECL, 0, integer_type_node);
- fnname = XSTR (XEXP (DECL_RTL (thunk_fndecl), 0), 0);
+ fnname = IDENTIFIER_POINTER (DECL_NAME (thunk_fndecl));
/* The back end expects DECL_INITIAL to contain a BLOCK, so we
create one. */
fn_block = make_node (BLOCK);