[llvm-commits] CVS: llvm/include/llvm/Analysis/DSGraph.h
Vikram Adve
vadve at cs.uiuc.edu
Wed Nov 27 11:40:02 PST 2002
Changes in directory llvm/include/llvm/Analysis:
DSGraph.h updated: 1.38 -> 1.39
---
Log message:
Added flags to CloneFlags to strip/keep Mod/Ref bits when cloning a graph.
---
Diffs of the changes:
Index: llvm/include/llvm/Analysis/DSGraph.h
diff -u llvm/include/llvm/Analysis/DSGraph.h:1.38 llvm/include/llvm/Analysis/DSGraph.h:1.39
--- llvm/include/llvm/Analysis/DSGraph.h:1.38 Sun Nov 10 00:47:35 2002
+++ llvm/include/llvm/Analysis/DSGraph.h Wed Nov 27 11:39:37 2002
@@ -153,6 +153,7 @@
StripAllocaBit = 1 << 0, KeepAllocaBit = 0 << 0,
DontCloneCallNodes = 1 << 1, CloneCallNodes = 0 << 0,
DontCloneAuxCallNodes = 1 << 2, CloneAuxCallNodes = 0 << 0,
+ StripModRefBits = 1 << 3, KeepModRefBits = 0 << 0,
};
// cloneInto - Clone the specified DSGraph into the current graph, returning
More information about the llvm-commits
mailing list