From 87c890a9c2a8f9818772f3b9e359d301b246e3a4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 30 Jan 2006 03:49:07 +0000 Subject: [PATCH] adjust prototype git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25798 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/TargetLowering.cpp | 3 ++- lib/Target/X86/X86ISelLowering.cpp | 3 ++- lib/Target/X86/X86ISelLowering.h | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp index b45ad00e592..2ee02ba5df8 100644 --- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/lib/CodeGen/SelectionDAG/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/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 9503bc13c48..5c4b9f8c710 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/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/lib/Target/X86/X86ISelLowering.h b/lib/Target/X86/X86ISelLowering.h index fc601702d5c..99d1442cd44 100644 --- a/lib/Target/X86/X86ISelLowering.h +++ b/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); -- 2.34.1