/// int getNumberOfInterferences(const LiveInterval &a) const {
/// IntervalSet intervals;
/// getInterferences(intervals, a);
- /// return(intervals.size());
+ /// return intervals.size();
/// };
/// };
///
virtual bool interfere(const LiveInterval &a,
const LiveInterval &b) const {
// A naive test
- return(a.overlaps(b));
+ return a.overlaps(b);
};
/// Return the set of intervals that interfere with this one.
#ifndef _GLIBCXX_DEBUG
assert(0 && "Predecessor appears twice");
#endif
- return(false);
+ return false;
}
}
MachineBasicBlock::removeSuccessor(succ_iterator I) {
assert(I != Successors.end() && "Not a current successor!");
(*I)->removePredecessor(this);
- return(Successors.erase(I));
+ return Successors.erase(I);
}
void MachineBasicBlock::addPredecessor(MachineBasicBlock *pred) {