From af34b82ff433908ebee037301d0f62e2f6e9d8cb Mon Sep 17 00:00:00 2001 From: Dan Hipschman Date: Mon, 6 Aug 2007 15:02:56 -0700 Subject: [PATCH] method.c (use_thunk): Use DECL_NAME instead of DECL_RTL to access function name. 2007-08-06 Dan Hipschman * method.c (use_thunk): Use DECL_NAME instead of DECL_RTL to access function name. From-SVN: r127255 --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/method.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index eef4d12066e..e6563829632 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2007-08-06 Dan Hipschman + + * method.c (use_thunk): Use DECL_NAME instead of DECL_RTL to + access function name. + 2007-08-04 Alfred Minarik PR pch/13676 diff --git a/gcc/cp/method.c b/gcc/cp/method.c index 32cf5862928..f4b43a2285d 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); -- 2.30.2