adjust prototype

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25798 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-01-30 03:49:07 +00:00
parent 030dae5bce
commit 87c890a9c2
3 changed files with 6 additions and 3 deletions

View File

@ -131,7 +131,8 @@ const char *TargetLowering::getTargetNodeName(unsigned Opcode) const {
}
bool TargetLowering::isMaskedValueZeroForTargetNode(const SDOperand &Op,
uint64_t Mask) const {
uint64_t Mask,
MVIZFnPtr MVIZ) const {
return false;
}

View File

@ -1932,7 +1932,8 @@ const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
}
bool X86TargetLowering::isMaskedValueZeroForTargetNode(const SDOperand &Op,
uint64_t Mask) const {
uint64_t Mask,
MVIZFnPtr MVIZ) const {
unsigned Opc = Op.getOpcode();

View File

@ -208,7 +208,8 @@ namespace llvm {
/// be zero. Op is expected to be a target specific node. Used by DAG
/// combiner.
virtual bool isMaskedValueZeroForTargetNode(const SDOperand &Op,
uint64_t Mask) const;
uint64_t Mask,
MVIZFnPtr MVIZ) const;
SDOperand getReturnAddressFrameIndex(SelectionDAG &DAG);