forked from OSchip/llvm-project
parent
c378a99ba5
commit
a541320908
|
@ -190,6 +190,8 @@ void StackColoring::getAnalysisUsage(AnalysisUsage &AU) const {
|
|||
MachineFunctionPass::getAnalysisUsage(AU);
|
||||
}
|
||||
|
||||
#ifndef NDEBUG
|
||||
|
||||
LLVM_DUMP_METHOD void StackColoring::dumpBV(const char *tag,
|
||||
const BitVector &BV) const {
|
||||
DEBUG(dbgs() << tag << " : { ");
|
||||
|
@ -224,6 +226,8 @@ LLVM_DUMP_METHOD void StackColoring::dumpIntervals() const {
|
|||
}
|
||||
}
|
||||
|
||||
#endif // not NDEBUG
|
||||
|
||||
unsigned StackColoring::collectMarkers(unsigned NumSlot) {
|
||||
unsigned MarkersFound = 0;
|
||||
// Scan the function to find all lifetime markers.
|
||||
|
|
Loading…
Reference in New Issue