From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1698) id DD6873858D35; Fri, 17 Dec 2021 09:44:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DD6873858D35 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Iain D Sandoe To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-6034] Darwin, ppc: Additional change for r12-5974. X-Act-Checkin: gcc X-Git-Author: Iain Sandoe X-Git-Refname: refs/heads/master X-Git-Oldrev: 744428312e245cf506fbbdd299801cbbf539c000 X-Git-Newrev: 7c0ceaed0c07ece9ce0112ea6512f38855ae868e Message-Id: <20211217094413.DD6873858D35@sourceware.org> Date: Fri, 17 Dec 2021 09:44:13 +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: Fri, 17 Dec 2021 09:44:14 -0000 https://gcc.gnu.org/g:7c0ceaed0c07ece9ce0112ea6512f38855ae868e commit r12-6034-g7c0ceaed0c07ece9ce0112ea6512f38855ae868e Author: Iain Sandoe Date: Fri Dec 17 09:29:02 2021 +0000 Darwin, ppc: Additional change for r12-5974. This adds a missed change from r12-5974-g926d64906af. The builin_decls array has been renamed to drop the trailing _x that was used during the main changes to the builtins. Signed-off-by: Iain Sandoe gcc/ChangeLog: * config/rs6000/darwin.h: Drop trailing _x from the builtin_decls array name. Diff: --- gcc/config/rs6000/darwin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/rs6000/darwin.h b/gcc/config/rs6000/darwin.h index 7bc1009a523..8288003038e 100644 --- a/gcc/config/rs6000/darwin.h +++ b/gcc/config/rs6000/darwin.h @@ -507,7 +507,7 @@ #define SUBTARGET_INIT_BUILTINS \ do { \ darwin_patch_builtins (); \ - rs6000_builtin_decls_x[(unsigned) (RS6000_BIF_CFSTRING)] \ + rs6000_builtin_decls[(unsigned) (RS6000_BIF_CFSTRING)] \ = darwin_init_cfstring_builtins ((unsigned) (RS6000_BIF_CFSTRING)); \ } while(0)