diff options
author | James Henderson <jh7370@my.bristol.ac.uk> | 2019-07-05 11:57:07 +0000 |
---|---|---|
committer | James Henderson <jh7370@my.bristol.ac.uk> | 2019-07-05 11:57:07 +0000 |
commit | 1a517a4630ae4d9e24e991a3e6a3bf58c5dabf6d (patch) | |
tree | 36acbaf53479582d8a9f4f304d7bb9ff80ec0990 /llvm/docs/CommandGuide | |
parent | cf1a11ded21008c8b0db731b81bf70cf8606ae1f (diff) | |
download | bcm5719-llvm-1a517a4630ae4d9e24e991a3e6a3bf58c5dabf6d.tar.gz bcm5719-llvm-1a517a4630ae4d9e24e991a3e6a3bf58c5dabf6d.zip |
[docs][llvm-objcopy] Improve some wording.
llvm-svn: 365187
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-objcopy.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/CommandGuide/llvm-objcopy.rst b/llvm/docs/CommandGuide/llvm-objcopy.rst index 0119280625d..bccdccd24f2 100644 --- a/llvm/docs/CommandGuide/llvm-objcopy.rst +++ b/llvm/docs/CommandGuide/llvm-objcopy.rst @@ -150,10 +150,10 @@ them. .. option:: --add-symbol <name>=[<section>:]<value>[,<flags>] - Add to the output a new symbol called ``<name>`` to the symbol table, in the - section named ``<section>``, with value ``<value>``. If ``<section>`` is not - specified, the symbol is added as an absolute symbol. The ``<flags>`` affect - the symbol properties. Accepted values are: + Add a new symbol called ``<name>`` to the output symbol table, in the section + named ``<section>``, with value ``<value>``. If ``<section>`` is not specified, + the symbol is added as an absolute symbol. The ``<flags>`` affect the symbol + properties. Accepted values are: - `global` = the symbol will have global binding. - `local` = the symbol will have local binding. |