summaryrefslogtreecommitdiff
path: root/include/llvm/Support/CallSite.h
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2010-09-18 11:48:36 +0000
committerGabor Greif <ggreif@gmail.com>2010-09-18 11:48:36 +0000
commit89730dca5a29bf44d6f11e298a8beb49a46d347e (patch)
tree98ee886128fc5de9b22f0819ed665bf618770e5d /include/llvm/Support/CallSite.h
parent481630dee5f221c04bb26fe12f0887b4f25f8455 (diff)
downloadllvm-89730dca5a29bf44d6f11e298a8beb49a46d347e.tar.gz
llvm-89730dca5a29bf44d6f11e298a8beb49a46d347e.tar.bz2
llvm-89730dca5a29bf44d6f11e298a8beb49a46d347e.tar.xz
remove CallSite::get; it is still present (as protected) in the baseclass, use one of the constructors intead
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114275 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/CallSite.h')
-rw-r--r--include/llvm/Support/CallSite.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h
index 9b6a4098b6..571a04924d 100644
--- a/include/llvm/Support/CallSite.h
+++ b/include/llvm/Support/CallSite.h
@@ -57,7 +57,7 @@ public:
*this = get(II);
assert(I.getPointer() && "Not a call?");
}
-
+protected:
/// CallSiteBase::get - This static method is sort of like a constructor. It
/// will create an appropriate call site for a Call or Invoke instruction, but
/// it can also create a null initialized CallSiteBase object for something
@@ -72,7 +72,7 @@ public:
}
return CallSiteBase();
}
-
+public:
/// isCall - true if a CallInst is enclosed.
/// Note that !isCall() does not mean it is an InvokeInst enclosed,
/// it also could signify a NULL Instruction pointer.
@@ -282,16 +282,6 @@ public:
bool operator==(const CallSite &CS) const { return I == CS.I; }
bool operator!=(const CallSite &CS) const { return I != CS.I; }
-
- /// CallSite::get - This static method is sort of like a constructor. It will
- /// create an appropriate call site for a Call or Invoke instruction, but it
- /// can also create a null initialized CallSite object for something which is
- /// NOT a call site.
- ///
- static CallSite get(Value *V) {
- return Base::get(V);
- }
-
bool operator<(const CallSite &CS) const {
return getInstruction() < CS.getInstruction();
}