[llvm] r353672 - Remove a declaration that is dead, and not even implemented any longer.

Chandler Carruth via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 11 01:03:26 PST 2019


Author: chandlerc
Date: Mon Feb 11 01:03:26 2019
New Revision: 353672

URL: http://llvm.org/viewvc/llvm-project?rev=353672&view=rev
Log:
Remove a declaration that is dead, and not even implemented any longer.

Modified:
    llvm/trunk/include/llvm/Analysis/CodeMetrics.h

Modified: llvm/trunk/include/llvm/Analysis/CodeMetrics.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/CodeMetrics.h?rev=353672&r1=353671&r2=353672&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/CodeMetrics.h (original)
+++ llvm/trunk/include/llvm/Analysis/CodeMetrics.h Mon Feb 11 01:03:26 2019
@@ -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 {




More information about the llvm-commits mailing list