From: Chandler Carruth Date: Mon, 11 Feb 2019 09:03:26 +0000 (+0000) Subject: Remove a declaration that is dead, and not even implemented any longer. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=53ff4867dbaff3329013407afe3c8b46acb94388;p=llvm Remove a declaration that is dead, and not even implemented any longer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@353672 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/CodeMetrics.h b/include/llvm/Analysis/CodeMetrics.h index f14718f7fbc..f6ce2cdbee6 100644 --- a/include/llvm/Analysis/CodeMetrics.h +++ b/include/llvm/Analysis/CodeMetrics.h @@ -28,14 +28,6 @@ class DataLayout; class TargetTransformInfo; class Value; -/// Check whether a call will lower to something small. -/// -/// This tests checks whether this callsite will lower to something -/// significantly cheaper than a traditional call, often a single -/// instruction. Note that if isInstructionFree(CS.getInstruction()) would -/// return true, so will this function. -bool callIsSmall(ImmutableCallSite CS); - /// Utility to calculate the size and a few similar metrics for a set /// of basic blocks. struct CodeMetrics {