diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2017-06-30 07:09:08 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2017-06-30 07:09:08 +0000 |
| commit | 3545a9e1f9145df7f67428cf8eca9d0053f44e67 (patch) | |
| tree | 6c70b540ca33811aac61a58a1994d3afd0be1eff /llvm/docs/ReleaseNotes.rst | |
| parent | e24f434eb222d463342405a2ca9ce97767527cc1 (diff) | |
| download | bcm5719-llvm-3545a9e1f9145df7f67428cf8eca9d0053f44e67.tar.gz bcm5719-llvm-3545a9e1f9145df7f67428cf8eca9d0053f44e67.zip | |
Remove the BBVectorize pass.
It served us well, helped kick-start much of the vectorization efforts
in LLVM, etc. Its time has come and past. Back in 2014:
http://lists.llvm.org/pipermail/llvm-dev/2014-November/079091.html
Time to actually let go and move forward. =]
I've updated the release notes both about the removal and the
deprecation of the corresponding C API.
llvm-svn: 306797
Diffstat (limited to 'llvm/docs/ReleaseNotes.rst')
| -rw-r--r-- | llvm/docs/ReleaseNotes.rst | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/llvm/docs/ReleaseNotes.rst b/llvm/docs/ReleaseNotes.rst index 5939805a981..ddb31acfd02 100644 --- a/llvm/docs/ReleaseNotes.rst +++ b/llvm/docs/ReleaseNotes.rst @@ -54,8 +54,9 @@ Non-comprehensive list of changes in this release its nature as a general purpose PDB manipulation / diagnostics tool that does more than just dumping contents. - -* ... next change ... +* The ``BBVectorize`` pass has been removed. It was fully replaced and no + longer used back in 2014 but we didn't get around to removing it. Now it is + gone. The SLP vectorizer is the suggested non-loop vectorization pass. .. NOTE If you would like to document a larger change, then you can add a @@ -111,7 +112,11 @@ Changes to the OCaml bindings Changes to the C API -------------------- - During this release ... +* Deprecated the ``LLVMAddBBVectorizePass`` interface since the ``BBVectorize`` + pass has been removed. It is now a no-op and will be removed in the next + release. Use ``LLVMAddSLPVectorizePass`` instead to get the supported SLP + vectorizer. + External Open Source Projects Using LLVM 5 ========================================== |

