Added flags to CloneFlags to strip/keep Mod/Ref bits when cloning a graph.

llvm-svn: 4835
This commit is contained in:
Vikram S. Adve 2002-11-27 17:39:37 +00:00
parent 9409087108
commit 0b5b784922
1 changed files with 1 additions and 0 deletions

View File

@ -153,6 +153,7 @@ public:
StripAllocaBit = 1 << 0, KeepAllocaBit = 0 << 0, StripAllocaBit = 1 << 0, KeepAllocaBit = 0 << 0,
DontCloneCallNodes = 1 << 1, CloneCallNodes = 0 << 0, DontCloneCallNodes = 1 << 1, CloneCallNodes = 0 << 0,
DontCloneAuxCallNodes = 1 << 2, CloneAuxCallNodes = 0 << 0, DontCloneAuxCallNodes = 1 << 2, CloneAuxCallNodes = 0 << 0,
StripModRefBits = 1 << 3, KeepModRefBits = 0 << 0,
}; };
// cloneInto - Clone the specified DSGraph into the current graph, returning // cloneInto - Clone the specified DSGraph into the current graph, returning