diff options
author | Tyler Nowicki <tnowicki@apple.com> | 2014-07-31 21:02:40 +0000 |
---|---|---|
committer | Tyler Nowicki <tnowicki@apple.com> | 2014-07-31 21:02:40 +0000 |
commit | 9fe497fcac032e2bd40e6077f8d98779d1b07ff3 (patch) | |
tree | 6acf25d59040f73e3fd6c8ec0f557e5b4c087d75 /llvm/lib/Transforms | |
parent | ceb23381ec165d52cec4a43999ae543201cecfc2 (diff) | |
download | bcm5719-llvm-9fe497fcac032e2bd40e6077f8d98779d1b07ff3.tar.gz bcm5719-llvm-9fe497fcac032e2bd40e6077f8d98779d1b07ff3.zip |
Improve the remark generated when a variable that is used outside the loop is not a reduction or induction variable.
Reviewed by Arnold Schwaighofer
llvm-svn: 214440
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index a88eb490e40..2cde0871bc4 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -3590,8 +3590,8 @@ bool LoopVectorizationLegality::canVectorizeInstrs() { // identified reduction value with an outside user. if (!hasOutsideLoopUser(TheLoop, it, AllowedExit)) continue; - emitAnalysis(Report(it) << "value that could not be identified as " - "reduction is used outside the loop"); + emitAnalysis(Report(it) << "value could not be identified as " + "an induction or reduction variable"); return false; } @@ -3676,7 +3676,8 @@ bool LoopVectorizationLegality::canVectorizeInstrs() { continue; } - emitAnalysis(Report(it) << "unvectorizable operation"); + emitAnalysis(Report(it) << "value that could not be identified as " + "reduction is used outside the loop"); DEBUG(dbgs() << "LV: Found an unidentified PHI."<< *Phi <<"\n"); return false; }// end of PHI handling |