summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/Utils/InlineCost.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Transforms/Utils/InlineCost.h')
-rw-r--r--include/llvm/Transforms/Utils/InlineCost.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Transforms/Utils/InlineCost.h b/include/llvm/Transforms/Utils/InlineCost.h
index 6018a803c6..b56678b204 100644
--- a/include/llvm/Transforms/Utils/InlineCost.h
+++ b/include/llvm/Transforms/Utils/InlineCost.h
@@ -77,12 +77,12 @@ namespace llvm {
// getInlineCost - The heuristic used to determine if we should inline the
// function call or not.
//
- int getInlineCost(CallSite CS,
+ int getInlineCost(CallSite cs,
SmallPtrSet<const Function *, 16> &NeverInline);
// getInlineFudgeFactor - Return a > 1.0 factor if the inliner should use a
// higher threshold to determine if the function call should be inlined.
- float getInlineFudgeFactor(CallSite CS);
+ float getInlineFudgeFactor(CallSite cs);
};
}