diff options
author | Adam Nemet <anemet@apple.com> | 2017-02-28 23:48:58 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2017-02-28 23:48:58 +0000 |
commit | e193da191d0240554e27b3bc34bc1be470ca09ed (patch) | |
tree | b621a415f79404091a18ff827513e202083bf51c /llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | |
parent | 612ac86189b84e19f852963c5ba6e097ab841767 (diff) | |
download | bcm5719-llvm-e193da191d0240554e27b3bc34bc1be470ca09ed.tar.gz bcm5719-llvm-e193da191d0240554e27b3bc34bc1be470ca09ed.zip |
[LV] These should missed remarks
llvm-svn: 296544
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoopVectorize.cpp')
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index 3d203816d2a..36570b49bb0 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -7647,10 +7647,10 @@ bool LoopVectorizePass::processLoop(Loop *L) { const char *VAPassName = Hints.vectorizeAnalysisPassName(); if (!VectorizeLoop && !InterleaveLoop) { // Do not vectorize or interleaving the loop. - ORE->emit(OptimizationRemarkAnalysis(VAPassName, VecDiagMsg.first, + ORE->emit(OptimizationRemarkMissed(VAPassName, VecDiagMsg.first, L->getStartLoc(), L->getHeader()) << VecDiagMsg.second); - ORE->emit(OptimizationRemarkAnalysis(LV_NAME, IntDiagMsg.first, + ORE->emit(OptimizationRemarkMissed(LV_NAME, IntDiagMsg.first, L->getStartLoc(), L->getHeader()) << IntDiagMsg.second); return false; |