From: Reid Kleckner Date: Thu, 24 Apr 2014 20:19:22 +0000 (+0000) Subject: Remove dead inline function that doesn't compile X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=1ce40b302d9fde603e24802153790fab57505638 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 --- diff --git a/include/llvm/IR/CallSite.h b/include/llvm/IR/CallSite.h index 39cb461f090..9847e70050b 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->isTailCall(); } - /// \brief Tests if this call site must be tail call optimized. Only a /// CallInst can be tail call optimized. bool isMustTailCall() const {