diff options
author | Daniel Dunbar <daniel@zuster.org> | 2013-01-17 19:52:25 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2013-01-17 19:52:25 +0000 |
commit | 634bd8512a6576f9426713b72ce98904d159fd8a (patch) | |
tree | dabd3ea2dcb2a733760074dc97a693e318728a0e /docs | |
parent | d69a43a88d1d0027c091b6f82820d17eade033f2 (diff) | |
download | external_llvm-634bd8512a6576f9426713b72ce98904d159fd8a.zip external_llvm-634bd8512a6576f9426713b72ce98904d159fd8a.tar.gz external_llvm-634bd8512a6576f9426713b72ce98904d159fd8a.tar.bz2 |
[Linker] Drop support for IR-level extended linking support (archives, etc.).
- This code is dead, and the "right" way to get this support is to use the
platform-specific linker-integrated LTO mechanisms, or the forthcoming LLVM
linker.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172749 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ReleaseNotes.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst index 2de4ebb..f69308e 100644 --- a/docs/ReleaseNotes.rst +++ b/docs/ReleaseNotes.rst @@ -500,7 +500,9 @@ LowerInvoke already use the new interface. The ``TargetData`` structure has been renamed to ``DataLayout`` and moved to ``VMCore`` to remove a dependency on ``Target``. -#. ... +#. The IR-level extended linker APIs (for example, to link bitcode files out of + archives) have been removed. Any existing clients of these features should + move to using a linker with integrated LTO support. Tools Changes ------------- |