From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 69D453858D37; Sun, 9 Apr 2023 17:11:45 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 69D453858D37 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1681060305; bh=v0fFvH1XnCKcvUbpBR2SI+w1ihgWw/CfC1v/U/gNApk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=kuEBzWrtG+2bSqLt+msV2eirUth20qrU0c1/PucPiUTfHpvbjdvtyX9ZPJ7ZP4Hv6 VEspjNT8oz0K2RiSeLOp6Ds4EtZ2woxXKmszquRsXNxgZN9Plm30lOU61VE27BWI2o NFSVhX3AokB4067mxSdAIUOYD6LV9N6gooURaSkQ= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/109457] %z[asmSymbolicName] in AssemblerTemplate fails to compile Date: Sun, 09 Apr 2023 17:11:45 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 11.3.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: pinskia at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D109457 --- Comment #3 from Andrew Pinski --- (In reply to lyazj from comment #2) > Thanks very much for the quick and concise solution. I'm sorry that I mis= sed > the truth that I could have probably put the modifier `z` on an immediate > and did the substitution that broke the equivalence to the original code. > However, since the modifier is case-sensitive, I suggest revising the err= or > reporting routines to report the improper modifier 'z' instead of 'Z' loo= ked > like a bug. :) The issue there is the code which implements 'z' is shared with 'Z' and the error message only references 'Z' and missed that it is shared with 'z'. Le= t me file a bug for that.=