diff options
author | Nick Clifton <nickc@redhat.com> | 2013-06-10 11:59:44 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2013-06-10 11:59:44 +0000 |
commit | 10bf68945eed880597eb96c2749adadadee1af8f (patch) | |
tree | 96fe9e1ede6e9db385bcbe705474db81cfb57fba /ld | |
parent | b241c8905a48ecbd86e684cf5bdb4273cf2906de (diff) | |
download | gdb-10bf68945eed880597eb96c2749adadadee1af8f.zip gdb-10bf68945eed880597eb96c2749adadadee1af8f.tar.gz gdb-10bf68945eed880597eb96c2749adadadee1af8f.tar.bz2 |
PR ld/15598
* ld.texinfo (Source Code Reference): Fix typos.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/ld.texinfo | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index adfd304..4736e6b 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2013-06-10 Dilyan Palauzov <dilyan.palauzov@aegee.org> + + PR ld/15598 + * ld.texinfo (Source Code Reference): Fix typos. + 2013-06-07 Will Newton <will.newton@linaro.org> * emulparams/aarch64elf.sh: Add IREL_IN_PLT. diff --git a/ld/ld.texinfo b/ld/ld.texinfo index c4e21b5..a4fed79 100644 --- a/ld/ld.texinfo +++ b/ld/ld.texinfo @@ -3601,7 +3601,7 @@ value. So for example the following C declaration, at file scope: int foo = 1000; @end smallexample -creates a entry called @samp{foo} in the symbol table. This entry +creates an entry called @samp{foo} in the symbol table. This entry holds the address of an @samp{int} sized block of memory where the number 1000 is initially stored. @@ -3622,7 +3622,7 @@ address. Whereas: int * a = & foo; @end smallexample -looks up the symbol @samp{foo} in the symbol table, gets it address +looks up the symbol @samp{foo} in the symbol table, gets its address and then copies this address into the block of memory associated with the variable @samp{a}. |