summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2014-04-24 20:19:22 +0000
committerReid Kleckner <reid@kleckner.net>2014-04-24 20:19:22 +0000
commit1ce40b302d9fde603e24802153790fab57505638 (patch)
treefd6bb7672e065467dcd2235c016d74fb2b1d8f64 /include
parent710c1a449dd7bee747ecf9c344a6f6d5461a158d (diff)
downloadllvm-1ce40b302d9fde603e24802153790fab57505638.tar.gz
llvm-1ce40b302d9fde603e24802153790fab57505638.tar.bz2
llvm-1ce40b302d9fde603e24802153790fab57505638.tar.xz
Remove dead inline function that doesn't compile
MSVC doesn't diagnose this, interestingly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207144 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/IR/CallSite.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/llvm/IR/CallSite.h b/include/llvm/IR/CallSite.h
index 39cb461f09..9847e70050 100644
--- a/include/llvm/IR/CallSite.h
+++ b/include/llvm/IR/CallSite.h
@@ -160,9 +160,6 @@ public:
///
FunTy *getCaller() const { return (*this)->getParent()->getParent(); }
- /// \brief Tests if this is a tail call. Only a CallInst can be a tail call.
- bool isTailCall() const { return isCall() && cast<CallInst>->isTailCall(); }
-
/// \brief Tests if this call site must be tail call optimized. Only a
/// CallInst can be tail call optimized.
bool isMustTailCall() const {