aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Target/TargetLowering.h
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2006-01-27 21:09:22 +0000
committerNate Begeman <natebegeman@mac.com>2006-01-27 21:09:22 +0000
commitee625573b5b39b91441fc6ea23f3ba415abdc71f (patch)
tree164561a91c86dbb2a49ab18830ad034c44428852 /include/llvm/Target/TargetLowering.h
parentda427fa5daa4fca1a437e1ca8ff2e68925688fe9 (diff)
downloadexternal_llvm-ee625573b5b39b91441fc6ea23f3ba415abdc71f.zip
external_llvm-ee625573b5b39b91441fc6ea23f3ba415abdc71f.tar.gz
external_llvm-ee625573b5b39b91441fc6ea23f3ba415abdc71f.tar.bz2
Remove TLI.LowerReturnTo, and just let targets custom lower ISD::RET for
the same functionality. This addresses another piece of bug 680. Next, on to fixing Alpha VAARG, which I broke last time. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25696 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetLowering.h')
-rw-r--r--include/llvm/Target/TargetLowering.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index b2524d5..d3837eb 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -360,12 +360,6 @@ public:
unsigned CallingConv, bool isTailCall, SDOperand Callee,
ArgListTy &Args, SelectionDAG &DAG) = 0;
- /// LowerReturnTo - This hook lowers a return instruction into the appropriate
- /// legal ISD::RET node for the target's current ABI. This method is optional
- /// and is intended for targets that need non-standard behavior.
- virtual SDOperand LowerReturnTo(SDOperand Chain, SDOperand Op,
- SelectionDAG &DAG);
-
/// LowerFrameReturnAddress - This hook lowers a call to llvm.returnaddress or
/// llvm.frameaddress (depending on the value of the first argument). The
/// return values are the result pointer and the resultant token chain. If