don't bother |'ing in 0's
authorChris Lattner <sabre@nondot.org>
Thu, 24 Mar 2005 18:42:51 +0000 (18:42 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 24 Mar 2005 18:42:51 +0000 (18:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20815 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/DataStructure/BottomUpClosure.cpp
lib/Analysis/DataStructure/CompleteBottomUp.cpp
lib/Analysis/DataStructure/EquivClassGraphs.cpp

index 5dcaa31dca243ee25a0a716692c73d09a559f22c..46817b1597e3921c2901d4e8f74c8211d4b7c0a8 100644 (file)
@@ -369,7 +369,6 @@ void BUDataStructures::calculateGraph(DSGraph &Graph) {
               << Graph.getFunctionNames() << "' [" << Graph.getGraphSize() <<"+"
               << Graph.getAuxFunctionCalls().size() << "]\n");
         Graph.mergeInGraph(CS, *Callee, *GI,
-                           DSGraph::KeepModRefBits | 
                            DSGraph::StripAllocaBit|DSGraph::DontCloneCallNodes);
         ++NumBUInlines;
       } else {
@@ -444,7 +443,6 @@ void BUDataStructures::calculateGraph(DSGraph &Graph) {
               << Graph.getAuxFunctionCalls().size() << "]\n");
 
         Graph.mergeInGraph(CS, IndCallGraph.second, *GI,
-                           DSGraph::KeepModRefBits | 
                            DSGraph::StripAllocaBit |
                            DSGraph::DontCloneCallNodes);
         ++NumBUInlines;
index 103c6bf5392263530af1ffc07991939949e4a213..3cb0b6eb8455ff0b3b50566fe25127b68ddb805c 100644 (file)
@@ -235,7 +235,7 @@ void CompleteBUDataStructures::processGraph(DSGraph &G) {
         // calls or for self recursion within an SCC.
         DSGraph &GI = getOrCreateGraph(*CalleeFunc);
         ++NumCBUInlines;
-        G.mergeInGraph(CS, *CalleeFunc, GI, DSGraph::KeepModRefBits |
+        G.mergeInGraph(CS, *CalleeFunc, GI, 
                        DSGraph::StripAllocaBit | DSGraph::DontCloneCallNodes |
                        DSGraph::DontCloneAuxCallNodes);
         DEBUG(std::cerr << "    Inlining graph [" << i << "/"
index 7632200b83eb3ce67bc454e2fa9c2f3d44e6519e..288f594926badb51592219a9e9ccc2e0a55a473e 100644 (file)
@@ -436,7 +436,7 @@ void EquivClassGraphs::processGraph(DSGraph &G) {
       if (CalleeGraph != &G) {
         ++NumFoldGraphInlines;
         G.mergeInGraph(CS, *CalleeFunc, *CalleeGraph,
-                       DSGraph::KeepModRefBits | DSGraph::StripAllocaBit |
+                       DSGraph::StripAllocaBit |
                        DSGraph::DontCloneCallNodes |
                        DSGraph::DontCloneAuxCallNodes);
         DEBUG(std::cerr << "    Inlining graph [" << i << "/"