aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/DataStructure/DataStructureAA.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-22 03:03:52 +0000
committerChris Lattner <sabre@nondot.org>2003-06-22 03:03:52 +0000
commite0f4b98026aa25969106dd8143a8eff03ab99975 (patch)
tree0da17e746b748c0bdd7f9811c68fc01657a3ca50 /lib/Analysis/DataStructure/DataStructureAA.cpp
parent5bb8776eced883293b3d2e11e52ad250a3a91015 (diff)
Remove support for the MultiObject flag, which was fundamentally broken
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6840 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/DataStructureAA.cpp')
-rw-r--r--lib/Analysis/DataStructure/DataStructureAA.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/DataStructure/DataStructureAA.cpp b/lib/Analysis/DataStructure/DataStructureAA.cpp
index d7c40c6f5a..3c89e6d267 100644
--- a/lib/Analysis/DataStructure/DataStructureAA.cpp
+++ b/lib/Analysis/DataStructure/DataStructureAA.cpp
@@ -96,8 +96,8 @@ AliasAnalysis::AliasResult DSAA::alias(const Value *V1, unsigned V1Size,
// Both point to the same node and same offset, and there is only one
// physical memory object represented in the node, return must alias.
- if (O1 == O2 && !N1->isMultiObject())
- return MustAlias; // Exactly the same object & offset
+ //if (O1 == O2 && !N1->isMultiObject())
+ // return MustAlias; // Exactly the same object & offset
// See if they point to different offsets... if so, we may be able to
// determine that they do not alias...