Add assertions
authorChris Lattner <sabre@nondot.org>
Thu, 23 Oct 2003 19:33:49 +0000 (19:33 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 23 Oct 2003 19:33:49 +0000 (19:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9443 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/CallSite.h

index afd42246cd157a863cb317e156539bf241a6886b..21d30f3ecbd8b00293ea5750550e898fdb56b72c 100644 (file)
@@ -50,7 +50,10 @@ public:
 
   /// getCalledValue - Return the pointer to function that is being called...
   ///
-  Value *getCalledValue() const { return I->getOperand(0); }
+  Value *getCalledValue() const {
+    assert(I && "Not a call or invoke instruction!");
+    return I->getOperand(0);
+  }
 
   /// getCalledFunction - Return the function being called if this is a direct
   /// call, otherwise return null (if it's an indirect call).
@@ -62,6 +65,7 @@ public:
   /// setCalledFunction - Set the callee to the specified value...
   ///
   void setCalledFunction(Value *V) {
+    assert(I && "Not a call or invoke instruction!");
     I->setOperand(0, V);
   }
 
@@ -73,6 +77,7 @@ public:
   /// list for a call site.
   ///
   arg_iterator arg_begin() const {
+    assert(I && "Not a call or invoke instruction!");
     if (I->getOpcode() == Instruction::Call)
       return I->op_begin()+1; // Skip Function
     else