1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Loop Vectorizer: Enable if-conversion.

llvm-svn: 170632
This commit is contained in:
Nadav Rotem 2012-12-20 02:00:02 +00:00
parent c402454b6f
commit f79dac509d

View File

@ -44,7 +44,7 @@ VectorizationFactor("force-vector-width", cl::init(0), cl::Hidden,
cl::desc("Sets the SIMD width. Zero is autoselect.")); cl::desc("Sets the SIMD width. Zero is autoselect."));
static cl::opt<bool> static cl::opt<bool>
EnableIfConversion("enable-if-conversion", cl::init(false), cl::Hidden, EnableIfConversion("enable-if-conversion", cl::init(true), cl::Hidden,
cl::desc("Enable if-conversion during vectorization.")); cl::desc("Enable if-conversion during vectorization."));
namespace { namespace {