[llvm-commits] CVS: llvm/include/llvm/Analysis/DSGraph.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Nov 8 16:30:00 PST 2002
Changes in directory llvm/include/llvm/Analysis:
DSGraph.h updated: 1.31 -> 1.32
---
Log message:
Add another option to cloneGraph
---
Diffs of the changes:
Index: llvm/include/llvm/Analysis/DSGraph.h
diff -u llvm/include/llvm/Analysis/DSGraph.h:1.31 llvm/include/llvm/Analysis/DSGraph.h:1.32
--- llvm/include/llvm/Analysis/DSGraph.h:1.31 Fri Nov 8 15:24:51 2002
+++ llvm/include/llvm/Analysis/DSGraph.h Fri Nov 8 16:28:55 2002
@@ -140,8 +140,9 @@
// CloneFlags enum - Bits that may be passed into the cloneInto method to
// specify how to clone the function graph.
enum CloneFlags {
- StripAllocaBit = 1 << 0, KeepAllocaBit = 0 << 0,
- DontCloneCallNodes = 2 << 0, CloneCallNodes = 0 << 0,
+ StripAllocaBit = 1 << 0, KeepAllocaBit = 0 << 0,
+ DontCloneCallNodes = 1 << 1, CloneCallNodes = 0 << 0,
+ DontCloneAuxCallNodes = 1 << 2, CloneAuxCallNodes = 0 << 0,
};
// cloneInto - Clone the specified DSGraph into the current graph, returning
More information about the llvm-commits
mailing list