forked from OSchip/llvm-project
parent
8d741b9c8d
commit
c6fa0282d2
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue