diff options
author | Chris Lattner <sabre@nondot.org> | 2006-04-12 16:21:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-04-12 16:21:12 +0000 |
commit | b878151b1e50e820ef0a00aed12a200a1e0fef57 (patch) | |
tree | 094642e9499befba62cb26a5efda1b6654a62753 | |
parent | fdfded55888e35b76bb70231a5bb2f60877c2f6a (diff) | |
download | external_llvm-b878151b1e50e820ef0a00aed12a200a1e0fef57.zip external_llvm-b878151b1e50e820ef0a00aed12a200a1e0fef57.tar.gz external_llvm-b878151b1e50e820ef0a00aed12a200a1e0fef57.tar.bz2 |
Provide a default impl of LowerArguments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27605 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 67b5448..882584f 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -524,7 +524,7 @@ public: /// LowerArguments - This hook must be implemented to indicate how we should /// lower the arguments for the specified function, into the specified DAG. virtual std::vector<SDOperand> - LowerArguments(Function &F, SelectionDAG &DAG) = 0; + LowerArguments(Function &F, SelectionDAG &DAG); /// LowerCallTo - This hook lowers an abstract call to a function into an /// actual call. This returns a pair of operands. The first element is the |