mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-13 15:37:24 +00:00
adjust prototype
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25798 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
030dae5bce
commit
87c890a9c2
@ -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…
x
Reference in New Issue
Block a user