diff options
Diffstat (limited to 'llvm/lib/Transforms/Vectorize/LoopVectorize.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index c7ff7c3fceb..9a85ee812cf 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -2804,8 +2804,8 @@ bool LoopVectorizationLegality::canVectorizeMemory() {                                          Inst,                                          WriteObjects,                                          MaxByteWidth)) { -        DEBUG(dbgs() << "LV: Found a possible write-write reorder:" -              << *UI <<"\n"); +        DEBUG(dbgs() << "LV: Found a possible write-write reorder:" << **UI +                     << "\n");          return false;        } @@ -2848,8 +2848,8 @@ bool LoopVectorizationLegality::canVectorizeMemory() {                                          Inst,                                          WriteObjects,                                          MaxByteWidth)) { -        DEBUG(dbgs() << "LV: Found a possible read-write reorder:" -              << *UI <<"\n"); +        DEBUG(dbgs() << "LV: Found a possible read-write reorder:" << **UI +                     << "\n");          return false;        }      } | 

