diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-11-01 17:09:14 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-11-01 17:09:14 +0000 |
commit | 19794da02cc48a772ae6f4756b14b111a627170e (patch) | |
tree | 9dda635ddcf69fa502bf5dc3e1c8ab9f862d589f /utils | |
parent | 307cfaeaf0bc629357725fb0c471e45319d48ff1 (diff) | |
download | external_llvm-19794da02cc48a772ae6f4756b14b111a627170e.zip external_llvm-19794da02cc48a772ae6f4756b14b111a627170e.tar.gz external_llvm-19794da02cc48a772ae6f4756b14b111a627170e.tar.bz2 |
Remove linkonce_odr_auto_hide.
linkonce_odr_auto_hide was in incomplete attempt to implement a way
for the linker to hide symbols that are known to be available in every
TU and whose addresses are not relevant for a particular DSO.
It was redundant in that it all its uses are equivalent to
linkonce_odr+unnamed_addr. Unlike those, it has never been connected
to clang or llvm's optimizers, so it was effectively dead.
Given that nothing produces it, this patch just nukes it
(other than the llvm-c enum value).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193865 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/kate/llvm.xml | 1 | ||||
-rw-r--r-- | utils/vim/llvm.vim | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/utils/kate/llvm.xml b/utils/kate/llvm.xml index 3e32b50..7cea92a 100644 --- a/utils/kate/llvm.xml +++ b/utils/kate/llvm.xml @@ -41,7 +41,6 @@ <item> private </item> <item> linker_private </item> <item> linker_private_weak </item> - <item> linker_private_weak_def_auto </item> <item> internal </item> <item> available_externally </item> <item> linkonce </item> diff --git a/utils/vim/llvm.vim b/utils/vim/llvm.vim index b28c07f..c611ad8 100644 --- a/utils/vim/llvm.vim +++ b/utils/vim/llvm.vim @@ -43,8 +43,8 @@ syn keyword llvmKeyword constant datalayout declare default define deplibs syn keyword llvmKeyword dllexport dllimport except extern_weak external fastcc syn keyword llvmKeyword filter gc global hidden initialexec inlinehint inreg syn keyword llvmKeyword intel_ocl_bicc inteldialect internal linker_private -syn keyword llvmKeyword linker_private_weak linker_private_weak_def_auto -syn keyword llvmKeyword linkonce linkonce_odr linkonce_odr_auto_hide +syn keyword llvmKeyword linker_private_weak +syn keyword llvmKeyword linkonce linkonce_odr syn keyword llvmKeyword localdynamic localexec minsize module monotonic syn keyword llvmKeyword msp430_intrcc naked nest noalias nocapture syn keyword llvmKeyword noimplicitfloat noinline nonlazybind noredzone noreturn |