Update the release notes about the vectorizers.

llvm-svn: 179564
This commit is contained in:
Nadav Rotem 2013-04-15 22:10:39 +00:00
parent 27ae8a2800
commit 2ee204d91d
1 changed files with 9 additions and 0 deletions

View File

@ -119,6 +119,15 @@ has the following features:
- Vectorization of function calls
- Partial unrolling during vectorization
The loop vectorizer is now enabled by default for -O3.
SLP Vectorizer
--------------
LLVM now has a new SLP vectorizer. The new SLP vectorizer is not enabled by
default but can be enabled using the clang flag -fslp-vectorize. The BB-vectorizer
can also be enabled using the command line flag -fslp-vectorize-aggressive.
R600 Backend
------------