mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92658 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fc524526e4
commit
ef1894ed7e
@ -17,6 +17,7 @@
|
||||
#include "llvm/ADT/FoldingSet.h"
|
||||
#include "llvm/System/Atomic.h"
|
||||
#include "llvm/System/Mutex.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/ManagedStatic.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
using namespace llvm;
|
||||
@ -318,11 +319,11 @@ AttrListPtr AttrListPtr::removeAttr(unsigned Idx, Attributes Attrs) const {
|
||||
}
|
||||
|
||||
void AttrListPtr::dump() const {
|
||||
errs() << "PAL[ ";
|
||||
dbgs() << "PAL[ ";
|
||||
for (unsigned i = 0; i < getNumSlots(); ++i) {
|
||||
const AttributeWithIndex &PAWI = getSlot(i);
|
||||
errs() << "{" << PAWI.Index << "," << PAWI.Attrs << "} ";
|
||||
dbgs() << "{" << PAWI.Index << "," << PAWI.Attrs << "} ";
|
||||
}
|
||||
|
||||
errs() << "]\n";
|
||||
dbgs() << "]\n";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user