diff options
| author | Chris Lattner <sabre@nondot.org> | 2005-03-20 04:23:57 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2005-03-20 04:23:57 +0000 | 
| commit | ded489ec3b06abc82cb4ed9c6b7742918c6d77a1 (patch) | |
| tree | 7905e05d60edd548dd5ef083d351aad6cae233c2 | |
| parent | ff634f4e3225fc1669a2d36497c35f8ba785bf13 (diff) | |
| download | bcm5719-llvm-ded489ec3b06abc82cb4ed9c6b7742918c6d77a1.tar.gz bcm5719-llvm-ded489ec3b06abc82cb4ed9c6b7742918c6d77a1.zip  | |
-steens doesn't use the inlined globals facility.
llvm-svn: 20712
| -rw-r--r-- | llvm/lib/Analysis/DataStructure/Steensgaard.cpp | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DataStructure/Steensgaard.cpp b/llvm/lib/Analysis/DataStructure/Steensgaard.cpp index d62d6993182..5105f5638f7 100644 --- a/llvm/lib/Analysis/DataStructure/Steensgaard.cpp +++ b/llvm/lib/Analysis/DataStructure/Steensgaard.cpp @@ -134,8 +134,7 @@ bool Steens::runOnModule(Module &M) {        {  // Scope to free NodeMap memory ASAP          DSGraph::NodeMapTy NodeMap;          const DSGraph &FDSG = LDS.getDSGraph(*I); -        ResultGraph->cloneInto(FDSG, ValMap, RetValMap, NodeMap, -                               DSGraph::UpdateInlinedGlobals); +        ResultGraph->cloneInto(FDSG, ValMap, RetValMap, NodeMap, 0);        }        // Incorporate the inlined Function's ScalarMap into the global  | 

