[llvm-commits] CVS: llvm/lib/Analysis/DataStructure/DataStructureAA.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sat Mar 19 18:14:32 PST 2005
Changes in directory llvm/lib/Analysis/DataStructure:
DataStructureAA.cpp updated: 1.28 -> 1.29
---
Log message:
#ifdef out a function only used by #ifdef'd code.
---
Diffs of the changes: (+2 -0)
DataStructureAA.cpp | 2 ++
1 files changed, 2 insertions(+)
Index: llvm/lib/Analysis/DataStructure/DataStructureAA.cpp
diff -u llvm/lib/Analysis/DataStructure/DataStructureAA.cpp:1.28 llvm/lib/Analysis/DataStructure/DataStructureAA.cpp:1.29
--- llvm/lib/Analysis/DataStructure/DataStructureAA.cpp:1.28 Fri Mar 18 17:18:30 2005
+++ llvm/lib/Analysis/DataStructure/DataStructureAA.cpp Sat Mar 19 20:14:15 2005
@@ -100,6 +100,7 @@
return 0;
}
+#if 0
// isSinglePhysicalObject - For now, the only case that we know that there is
// only one memory object in the node is when there is a single global in the
// node, and the only composition bit set is Global.
@@ -109,6 +110,7 @@
return N->isGlobalNode() && N->getGlobals().size() == 1 &&
!N->isHeapNode() && !N->isAllocaNode() && !N->isUnknownNode();
}
+#endif
// alias - This is the only method here that does anything interesting...
AliasAnalysis::AliasResult DSAA::alias(const Value *V1, unsigned V1Size,
More information about the llvm-commits
mailing list