aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg-Johann Lay <avr@gjlay.de>2012-05-31 09:35:58 +0000
committerGeorg-Johann Lay <gjl@gcc.gnu.org>2012-05-31 09:35:58 +0000
commit5b2f6f97b35f02a72933034228f5dc82e4b6d21c (patch)
treee917b894b22465d51809ef7d4a32140cdb38e711
parent37239ce661d1a5af831658c27ee36c806a8b2539 (diff)
downloadgcc-5b2f6f97b35f02a72933034228f5dc82e4b6d21c.zip
gcc-5b2f6f97b35f02a72933034228f5dc82e4b6d21c.tar.gz
gcc-5b2f6f97b35f02a72933034228f5dc82e4b6d21c.tar.bz2
invoke.texi (AVR Options): Fix typos.
* doc/invoke.texi (AVR Options): Fix typos. From-SVN: r188053
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/doc/invoke.texi14
2 files changed, 11 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ee2afa5..d8dd4aa 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2012-05-31 Georg-Johann Lay <avr@gjlay.de>
+
+ * doc/invoke.texi (AVR Options): Fix typos.
+
2012-05-31 Hans-Peter Nilsson <hp@axis.com>
* config/cris/cris.h (CC1_SPEC): Pass through all -march=
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index 1102aff..94441f8 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -11171,26 +11171,26 @@ points to.
@item
The startup code from libgcc never sets @code{EIND}.
-Notice that startup code is a blend of code from libgcc and AVR-Libc.
-For the impact of AVR-Libc on @code{EIND}, see the
-@w{@uref{http://nongnu.org/avr-libc/user-manual,AVR-Libc user manual}}.
+Notice that startup code is a blend of code from libgcc and AVR-LibC.
+For the impact of AVR-LibC on @code{EIND}, see the
+@w{@uref{http://nongnu.org/avr-libc/user-manual,AVR-LibC user manual}}.
@item
It is legitimate for user-specific startup code to set up @code{EIND}
early, for example by means of initialization code located in
section @code{.init3}. Such code runs prior to general startup code
that initializes RAM and calls constructors, but after the bit
-of startup code from AVR-Libc that sets @code{EIND} to the segment
+of startup code from AVR-LibC that sets @code{EIND} to the segment
where the vector table is located.
@example
#include <avr/io.h>
static void
-__attribute__ ((section (".init3"), naked, used, no_instrument_function))
+__attribute__((section(".init3"),naked,used,no_instrument_function))
init3_set_eind (void)
@{
- __asm volatile ("ldi r24, pm_hh8(__trampolines_start)" "\n\t"
- "out %i0, r24" :: "n" (&EIND) : "r24", "memory");
+ __asm volatile ("ldi r24,pm_hh8(__trampolines_start)\n\t"
+ "out %i0,r24" :: "n" (&EIND) : "r24","memory");
@}
@end example