From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 987523857340; Wed, 19 Oct 2022 13:25:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 987523857340 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666185904; bh=01SNOM4JKF2g4uBhPQlzLX2v5PUTCnDgcAdzzqOb/+c=; h=From:To:Subject:Date:From; b=uG55oTjswLAc8QRriEUEfPG9aoiDNgCG+JOWrFl7yL81dTpXWgJUPDU7SOCKSB1jr CMuOeHsYxJs1EjULINjWsCYlAaUO4hubt/TRAfBw0WEOj917HsIhsXZN+1yyZd9OZN xPdqff8oKXQznKWP72FU79pzk2RsI96HN/HPOKRk= 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 r13-3379] avr: remove useless @tie{} directives X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/heads/master X-Git-Oldrev: f6c168f8c06047bfaa3005e570126831b8855dcc X-Git-Newrev: 09fed44cabd50f3d8e050f91cc2db02364ce9176 Message-Id: <20221019132504.987523857340@sourceware.org> Date: Wed, 19 Oct 2022 13:25:04 +0000 (GMT) List-Id: https://gcc.gnu.org/g:09fed44cabd50f3d8e050f91cc2db02364ce9176 commit r13-3379-g09fed44cabd50f3d8e050f91cc2db02364ce9176 Author: Martin Liska Date: Wed Oct 19 15:23:59 2022 +0200 avr: remove useless @tie{} directives gcc/ChangeLog: * doc/extend.texi: Remove useless @tie{} directives. Diff: --- gcc/doc/extend.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index cfbe32afce9..04af0584d82 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -7900,7 +7900,7 @@ This attribute works similar to the @code{section} attribute but adds additional checking. @table @asis -@item @bullet{}@tie{} Ordinary AVR cores with 32 general purpose registers: +@item @bullet{} Ordinary AVR cores with 32 general purpose registers: @code{progmem} affects the location of the data but not how this data is accessed. In order to read data located with the @code{progmem} attribute @@ -7925,7 +7925,7 @@ normally resides in the data memory (RAM). See also the @ref{AVR Named Address Spaces} section for an alternate way to locate and access data in flash memory. -@item @bullet{}@tie{} AVR cores with flash memory visible in the RAM address range: +@item @bullet{} AVR cores with flash memory visible in the RAM address range: On such devices, there is no need for attribute @code{progmem} or @ref{AVR Named Address Spaces,,@code{__flash}} qualifier at all. Just use standard C / C++. The compiler will generate @code{LD*} @@ -7938,7 +7938,7 @@ avoiding @code{progmem} and @code{__flash}. This applies to devices from families @code{avrtiny} and @code{avrxmega3}, see @ref{AVR Options} for an overview. -@item @bullet{}@tie{}Reduced AVR Tiny cores like ATtiny40: +@item @bullet{} Reduced AVR Tiny cores like ATtiny40: The compiler adds @code{0x4000} to the addresses of objects and declarations in @code{progmem} and locates the objects in flash memory, namely in section @code{.progmem.data}.