diff options
| author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-05-05 14:54:52 +0000 |
|---|---|---|
| committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-05-05 14:54:52 +0000 |
| commit | 3e3f2a4b8db9a828c0dc277819bb8f98dce6c2c5 (patch) | |
| tree | c82f8df1ae0ae49337dd74720199b0d9f9607780 /llvm/lib/Transforms/Vectorize | |
| parent | ba03fbabe58ad01e17b24c125993dddfbff1e234 (diff) | |
| download | bcm5719-llvm-3e3f2a4b8db9a828c0dc277819bb8f98dce6c2c5.tar.gz bcm5719-llvm-3e3f2a4b8db9a828c0dc277819bb8f98dce6c2c5.zip | |
LoopVectorize: Print values instead of pointers in debug output.
llvm-svn: 181157
Diffstat (limited to 'llvm/lib/Transforms/Vectorize')
| -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; } } |

