From: Tamar Christina Date: Fri, 27 Jun 2025 07:23:58 +0000 (+0100) Subject: docs: fix a typo in used attribute documentation X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c3043785a5fa598ae5e289edf7e274856981f6b;p=thirdparty%2Fgcc.git docs: fix a typo in used attribute documentation This fixes a small typo in the Label attributes docs. gcc/ChangeLog: * doc/extend.texi: Fix typo in unsed attribute docs. --- diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 323a2dc1fc5..946105d5cdc 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -9195,7 +9195,7 @@ NoError: @item unused This feature is intended for program-generated code that may contain unused labels, but which is compiled with @option{-Wall}. It is -not normally appropriate to use in it human-written code, though it +not normally appropriate to use it in human-written code, though it could be useful in cases where the code that jumps to the label is contained within an @code{#ifdef} conditional.