Fix typo in desription of linker script symbols.

(Source Code Reference): Fix off-by-one typo in example of how to
	use linker script symbols in C source code.
This commit is contained in:
Nick Clifton 2015-09-03 16:49:18 +01:00
parent 1a9155522d
commit a5e406b5ad
2 changed files with 6 additions and 1 deletions

View File

@ -3,6 +3,11 @@
* ld.texinfo (--build-id): Fix typo. The COFF/PE build-id section
is called .buildid not .build-id.
2015-09-03 Nick Clifton <nickc@redhat.com>
(Source Code Reference): Fix off-by-one typo in example of how to
use linker script symbols in C source code.
2015-08-19 Alan Modra <amodra@gmail.com>
* emultempl/aix.em: Don't set link_info.pic.

View File

@ -3853,7 +3853,7 @@ linker script contains these declarations:
@smallexample
@group
start_of_ROM = .ROM;
end_of_ROM = .ROM + sizeof (.ROM) - 1;
end_of_ROM = .ROM + sizeof (.ROM);
start_of_FLASH = .FLASH;
@end group
@end smallexample