diff options
author | Chris Lattner <sabre@nondot.org> | 2002-11-07 07:06:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-11-07 07:06:20 +0000 |
commit | 5e865cdbe26bb91abc903300bfc231cd1e14a91c (patch) | |
tree | 08c8c3a2a3bbca59a889088bcaac55e9264241ae /llvm/lib/Analysis/DataStructure/TopDownClosure.cpp | |
parent | df307e6fd0964dc81dd8cbc8bfefb6ace6298508 (diff) | |
download | bcm5719-llvm-5e865cdbe26bb91abc903300bfc231cd1e14a91c.tar.gz bcm5719-llvm-5e865cdbe26bb91abc903300bfc231cd1e14a91c.zip |
Instead of using a bool that constant has to be explained, use a self
explanitory enum instead.
llvm-svn: 4600
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/TopDownClosure.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/TopDownClosure.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp b/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp index 817e734a9cc..a37ccd98fab 100644 --- a/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp @@ -177,7 +177,7 @@ DSGraph &TDDataStructures::calculateGraph(Function &F) { // Strip scalars but not allocas since they are alive in callee. // DSNodeHandle RetVal = Graph->cloneInto(CG, OldValMap, OldNodeMap, - /*StripAllocas*/ false); + DSGraph::KeepAllocaBit); ResolveCallSite(*Graph, DSCallSite(CallSiteInCG, OldNodeMap)); } |