summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-03-21 01:19:09 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-03-21 01:19:09 +0000
commit485fafc8406db8552ba5e3ff871a6ee32694ad90 (patch)
tree1ef3b817cffdad90f035599965b245a2917bc598 /include
parent4f735ca1855bb66974f3b1c4ee493534d5037eda (diff)
downloadllvm-485fafc8406db8552ba5e3ff871a6ee32694ad90.tar.gz
llvm-485fafc8406db8552ba5e3ff871a6ee32694ad90.tar.bz2
llvm-485fafc8406db8552ba5e3ff871a6ee32694ad90.tar.xz
Re-apply r127953 with fixes: eliminate empty return block if it has no predecessors; update dominator tree if cfg is modified.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127981 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetLowering.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index 5b3f2b35bf..6b3c45adc5 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -1287,6 +1287,14 @@ public:
return false;
}
+ /// mayBeEmittedAsTailCall - Return true if the target may be able emit the
+ /// call instruction as a tail call. This is used by optimization passes to
+ /// determine if it's profitable to duplicate return instructions to enable
+ /// tailcall optimization.
+ virtual bool mayBeEmittedAsTailCall(CallInst *CI) const {
+ return false;
+ }
+
/// getTypeForExtArgOrReturn - Return the type that should be used to zero or
/// sign extend a zeroext/signext integer argument or return value.
/// FIXME: Most C calling convention requires the return type to be promoted,