adjust prototype

llvm-svn: 25798
This commit is contained in:
Chris Lattner 2006-01-30 03:49:07 +00:00
parent 8d741b9c8d
commit c6fa0282d2
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, bool TargetLowering::isMaskedValueZeroForTargetNode(const SDOperand &Op,
uint64_t Mask) const { uint64_t Mask,
MVIZFnPtr MVIZ) const {
return false; return false;
} }

View File

@ -1932,7 +1932,8 @@ const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
} }
bool X86TargetLowering::isMaskedValueZeroForTargetNode(const SDOperand &Op, bool X86TargetLowering::isMaskedValueZeroForTargetNode(const SDOperand &Op,
uint64_t Mask) const { uint64_t Mask,
MVIZFnPtr MVIZ) const {
unsigned Opc = Op.getOpcode(); 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 /// be zero. Op is expected to be a target specific node. Used by DAG
/// combiner. /// combiner.
virtual bool isMaskedValueZeroForTargetNode(const SDOperand &Op, virtual bool isMaskedValueZeroForTargetNode(const SDOperand &Op,
uint64_t Mask) const; uint64_t Mask,
MVIZFnPtr MVIZ) const;
SDOperand getReturnAddressFrameIndex(SelectionDAG &DAG); SDOperand getReturnAddressFrameIndex(SelectionDAG &DAG);