diff options
author | Chris Jackson <snortotter@gmail.com> | 2019-08-15 09:45:09 +0000 |
---|---|---|
committer | Chris Jackson <snortotter@gmail.com> | 2019-08-15 09:45:09 +0000 |
commit | e5cdfbc65cac49fedba6cb3def55d62d851796ab (patch) | |
tree | 3913ce5c65df5dc0ca153852bfbe5e51a7f2f0c3 /llvm/docs | |
parent | 04f2f32869b3a62e236cfaa134f378771e48c129 (diff) | |
download | bcm5719-llvm-e5cdfbc65cac49fedba6cb3def55d62d851796ab.tar.gz bcm5719-llvm-e5cdfbc65cac49fedba6cb3def55d62d851796ab.zip |
[llvm-objcopy] Allow 'protected' visibility to be set when using
add-symbol
Reviewers: Maskray, rupprecht
Differential Revision: https://reviews.llvm.org/D65891
llvm-svn: 368982
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-objcopy.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/llvm-objcopy.rst b/llvm/docs/CommandGuide/llvm-objcopy.rst index 64ba094c9ee..044293c7e8a 100644 --- a/llvm/docs/CommandGuide/llvm-objcopy.rst +++ b/llvm/docs/CommandGuide/llvm-objcopy.rst @@ -160,6 +160,7 @@ them. - `weak` = the symbol will have weak binding. - `default` = the symbol will have default visibility. - `hidden` = the symbol will have hidden visibility. + - `protected` = the symbol will have protected visibility. - `file` = the symbol will be an `STT_FILE` symbol. - `section` = the symbol will be an `STT_SECTION` symbol. - `object` = the symbol will be an `STT_OBJECT` symbol. |