[llvm-commits] CVS: llvm/include/llvm/Analysis/DSGraph.h

Chris Lattner lattner at cs.uiuc.edu
Tue Oct 22 10:59:01 PDT 2002


Changes in directory llvm/include/llvm/Analysis:

DSGraph.h updated: 1.19 -> 1.20

---
Log message:

Allow modification of callee


---
Diffs of the changes:

Index: llvm/include/llvm/Analysis/DSGraph.h
diff -u llvm/include/llvm/Analysis/DSGraph.h:1.19 llvm/include/llvm/Analysis/DSGraph.h:1.20
--- llvm/include/llvm/Analysis/DSGraph.h:1.19	Mon Oct 21 14:50:27 2002
+++ llvm/include/llvm/Analysis/DSGraph.h	Tue Oct 22 10:57:58 2002
@@ -436,6 +436,8 @@
         DSNodeHandle &getCallee()           { return Callee; }
   const DSNodeHandle &getRetVal()     const { return RetVal; }
   const DSNodeHandle &getCallee()     const { return Callee; }
+  void setCallee(const DSNodeHandle &H) { Callee = H; }
+
   unsigned            getNumPtrArgs() const { return CallArgs.size(); }
 
   Function           *getResolvingCaller() const { return ResolvingCaller; }





More information about the llvm-commits mailing list