diff options
author | Chris Lattner <sabre@nondot.org> | 2006-05-16 22:52:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-05-16 22:52:11 +0000 |
commit | 6cacaee7249853a085b05fc6eec714803579c02c (patch) | |
tree | df78becb64037b5708ce85c36f5c9947bd4ecfdc | |
parent | af4ec0c56d2162a369fcdeba740ddda21be359b9 (diff) |
There is now a default impl of this method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28336 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index 7f4a10d315..005a0152a1 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -558,7 +558,7 @@ public: virtual std::pair<SDOperand, SDOperand> LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CallingConv, bool isTailCall, SDOperand Callee, - ArgListTy &Args, SelectionDAG &DAG) = 0; + ArgListTy &Args, SelectionDAG &DAG); /// LowerFrameReturnAddress - This hook lowers a call to llvm.returnaddress or /// llvm.frameaddress (depending on the value of the first argument). The |