mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Added flags to CloneFlags to strip/keep Mod/Ref bits when cloning a graph.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4835 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f443e6698f
commit
e127a14991
@ -153,6 +153,7 @@ public:
|
||||
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
|
||||
|
@ -153,6 +153,7 @@ public:
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user