call instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4241
91177308-0d34-0410-b5e6-
96231b3b80d8
}
bool operator<(const DSCallSite &CS) const {
- if (Inst < CS.Inst) return true;
- if (Inst > CS.Inst) return false;
if (RetVal < CS.RetVal) return true;
if (RetVal > CS.RetVal) return false;
if (Callee < CS.Callee) return true;
}
bool operator==(const DSCallSite &CS) const {
- return Inst == CS.Inst && RetVal == CS.RetVal && Callee == CS.Callee &&
+ return RetVal == CS.RetVal && Callee == CS.Callee &&
CallArgs == CS.CallArgs;
}
};
}
bool operator<(const DSCallSite &CS) const {
- if (Inst < CS.Inst) return true;
- if (Inst > CS.Inst) return false;
if (RetVal < CS.RetVal) return true;
if (RetVal > CS.RetVal) return false;
if (Callee < CS.Callee) return true;
}
bool operator==(const DSCallSite &CS) const {
- return Inst == CS.Inst && RetVal == CS.RetVal && Callee == CS.Callee &&
+ return RetVal == CS.RetVal && Callee == CS.Callee &&
CallArgs == CS.CallArgs;
}
};