summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/Analysis.h
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-01-18 21:50:24 +0000
committerBill Wendling <isanbard@gmail.com>2013-01-18 21:50:24 +0000
commit1a17bd21ff64968817dedb6cd2b7c809cee90804 (patch)
tree13b8dddc2f40fb5f53162fc64b5ff29909d95075 /include/llvm/CodeGen/Analysis.h
parent8a53a8329f47f86757af17dbea2864aa95414615 (diff)
downloadllvm-1a17bd21ff64968817dedb6cd2b7c809cee90804.tar.gz
llvm-1a17bd21ff64968817dedb6cd2b7c809cee90804.tar.bz2
llvm-1a17bd21ff64968817dedb6cd2b7c809cee90804.tar.xz
Remove unused parameter. Also use the AttributeSet query methods instead of the Attribute query methods.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172852 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/Analysis.h')
-rw-r--r--include/llvm/CodeGen/Analysis.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/Analysis.h b/include/llvm/CodeGen/Analysis.h
index 81e75d894d..ce9ca0a058 100644
--- a/include/llvm/CodeGen/Analysis.h
+++ b/include/llvm/CodeGen/Analysis.h
@@ -86,8 +86,7 @@ ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred);
/// between it and the return.
///
/// This function only tests target-independent requirements.
-bool isInTailCallPosition(ImmutableCallSite CS, Attribute CalleeRetAttr,
- const TargetLowering &TLI);
+bool isInTailCallPosition(ImmutableCallSite CS, const TargetLowering &TLI);
} // End llvm namespace