LoopVectorize: Print values instead of pointers in debug output.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181157 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2013-05-05 14:54:52 +00:00
parent e0c3454771
commit acc47c738d

View File

@ -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;
}
}