aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/CallSite.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/CallSite.h')
-rw-r--r--include/llvm/Support/CallSite.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h
index 9d9a30e..480535f 100644
--- a/include/llvm/Support/CallSite.h
+++ b/include/llvm/Support/CallSite.h
@@ -196,7 +196,7 @@ public:
bool isCallee(Value::use_iterator UI) const {
return getCallee() == &UI.getUse();
}
- bool isCallee(Value::use_const_iterator UI) const {
+ bool isCallee(Value::const_use_iterator UI) const {
return getCallee() == &UI.getUse();
}
private: