friend raw_ostream &operator<< (raw_ostream &OS, const DepChain &D);
};
- raw_ostream &operator<< (raw_ostream &OS, const DepChain &D) {
+ raw_ostream &operator<<(raw_ostream &OS, const DepChain &D) {
const ChainOfDependences &CD = D.Chain;
int ChainSize = CD.size();
OS << "**DepChain Start::**\n";
bool isDefined() { return Inst2Replace != nullptr; }
};
typedef struct ReuseValue ReuseValue;
- raw_ostream &operator<< (raw_ostream &OS, const ReuseValue &RU) {
+ raw_ostream &operator<<(raw_ostream &OS, const ReuseValue &RU) {
OS << "** ReuseValue ***\n";
OS << "Instruction to Replace: " << *(RU.Inst2Replace) << "\n";
OS << "Backedge Instruction: " << *(RU.BackedgeInst) << "\n";