From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 43A673858412; Mon, 7 Mar 2022 13:17:26 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 43A673858412 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-7518] arm: add missing space to error. X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/heads/master X-Git-Oldrev: 5db1d7f143c77543ae7a6c4649af3e611061e0d9 X-Git-Newrev: b1d8198e7df616ea80cb648a2c831e2c21f4319f Message-Id: <20220307131726.43A673858412@sourceware.org> Date: Mon, 7 Mar 2022 13:17:26 +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: Mon, 07 Mar 2022 13:17:26 -0000 https://gcc.gnu.org/g:b1d8198e7df616ea80cb648a2c831e2c21f4319f commit r12-7518-gb1d8198e7df616ea80cb648a2c831e2c21f4319f Author: Martin Liska Date: Mon Mar 7 14:16:21 2022 +0100 arm: add missing space to error. PR target/104794 gcc/ChangeLog: * config/arm/arm.cc (arm_option_override_internal): Add missing space. Diff: --- gcc/config/arm/arm.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/arm/arm.cc b/gcc/config/arm/arm.cc index 4bf1ef0517d..14b6c804455 100644 --- a/gcc/config/arm/arm.cc +++ b/gcc/config/arm/arm.cc @@ -3185,7 +3185,7 @@ arm_option_override_internal (struct gcc_options *opts, if (arm_stack_protector_guard == SSP_GLOBAL && opts->x_arm_stack_protector_guard_offset_str) { - error ("incompatible options %<-mstack-protector-guard=global%> and" + error ("incompatible options %<-mstack-protector-guard=global%> and " "%<-mstack-protector-guard-offset=%s%>", arm_stack_protector_guard_offset_str); }