From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2063) id 998EE3857BB5; Thu, 11 Aug 2022 05:38:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 998EE3857BB5 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Kewen Lin To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-2015] rs6000: Remove stale rs6000_global_entry_point_needed_p X-Act-Checkin: gcc X-Git-Author: Kewen Lin X-Git-Refname: refs/heads/master X-Git-Oldrev: e12986400de1809ba230e1ac55241b3bb402d7cd X-Git-Newrev: 7a0e252080e4175a7d6e408ea2aa7a017bb99cce Message-Id: <20220811053838.998EE3857BB5@sourceware.org> Date: Thu, 11 Aug 2022 05:38:38 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Aug 2022 05:38:38 -0000 https://gcc.gnu.org/g:7a0e252080e4175a7d6e408ea2aa7a017bb99cce commit r13-2015-g7a0e252080e4175a7d6e408ea2aa7a017bb99cce Author: Kewen Lin Date: Wed Aug 10 03:50:17 2022 -0500 rs6000: Remove stale rs6000_global_entry_point_needed_p r10-631 had renamed rs6000_global_entry_point_needed_p to rs6000_global_entry_point_prologue_needed_p. This is to remove the stale function declaration. gcc/ChangeLog: * config/rs6000/rs6000-internal.h (rs6000_global_entry_point_needed_p): Remove function declaration. Diff: --- gcc/config/rs6000/rs6000-internal.h | 1 - 1 file changed, 1 deletion(-) diff --git a/gcc/config/rs6000/rs6000-internal.h b/gcc/config/rs6000/rs6000-internal.h index 8ee8c987b81..b9e82c0468d 100644 --- a/gcc/config/rs6000/rs6000-internal.h +++ b/gcc/config/rs6000/rs6000-internal.h @@ -82,7 +82,6 @@ extern const char *rs6000_machine; from rs6000-logue.cc */ extern int uses_TOC (void); -extern bool rs6000_global_entry_point_needed_p (void); extern void rs6000_output_function_prologue (FILE *file); extern void rs6000_output_function_epilogue (FILE *file); extern bool rs6000_function_ok_for_sibcall (tree decl, tree exp);