OSDN Git Service

Remove a declaration that is dead, and not even implemented any longer.
authorChandler Carruth <chandlerc@gmail.com>
Mon, 11 Feb 2019 09:03:26 +0000 (09:03 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Mon, 11 Feb 2019 09:03:26 +0000 (09:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@353672 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/CodeMetrics.h

index f14718f..f6ce2cd 100644 (file)
@@ -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 {