diff options
| -rw-r--r-- | llvm/include/llvm/Support/CallSite.h | 2 | 
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/CallSite.h b/llvm/include/llvm/Support/CallSite.h index dc41590fb8a..0a21060f2d1 100644 --- a/llvm/include/llvm/Support/CallSite.h +++ b/llvm/include/llvm/Support/CallSite.h @@ -40,8 +40,6 @@ public:    CallSite(CallInst *CI) : I(reinterpret_cast<Instruction*>(CI), true) {}    CallSite(InvokeInst *II) : I(reinterpret_cast<Instruction*>(II), false) {}    CallSite(Instruction *C); -  CallSite(const CallSite &CS) : I(CS.I) {} -  CallSite &operator=(const CallSite &CS) { I = CS.I; return *this; }    bool operator==(const CallSite &CS) const { return I == CS.I; }    bool operator!=(const CallSite &CS) const { return I != CS.I; }  | 

