From c6fa0282d26f20a3f3f34400fb0a8581f13dbc29 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 30 Jan 2006 03:49:07 +0000 Subject: [PATCH] adjust prototype llvm-svn: 25798 --- llvm/lib/Target/TargetLowering.cpp | 3 ++- llvm/lib/Target/X86/X86ISelLowering.cpp | 3 ++- llvm/lib/Target/X86/X86ISelLowering.h | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/llvm/lib/Target/TargetLowering.cpp b/llvm/lib/Target/TargetLowering.cpp index b45ad00e592d..2ee02ba5df8e 100644 --- a/llvm/lib/Target/TargetLowering.cpp +++ b/llvm/lib/Target/TargetLowering.cpp @@ -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; } diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 9503bc13c48c..5c4b9f8c7106 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/lib/Target/X86/X86ISelLowering.cpp @@ -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(); diff --git a/llvm/lib/Target/X86/X86ISelLowering.h b/llvm/lib/Target/X86/X86ISelLowering.h index fc601702d5c2..99d1442cd44d 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.h +++ b/llvm/lib/Target/X86/X86ISelLowering.h @@ -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);