mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-21 21:29:41 +00:00
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:
parent
e0c3454771
commit
acc47c738d
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user