diff options
author | Chris Lattner <sabre@nondot.org> | 2003-06-22 03:03:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-06-22 03:03:52 +0000 |
commit | d791d8e427a96ab3893573fb71f266bbb727438b (patch) | |
tree | 90259aa6ef558e2f33b4ea7a947dfc0246e9c249 /llvm/lib/Analysis/DataStructure/DataStructureAA.cpp | |
parent | 09ede5c9366a52336eedd80e70f171da97d7bd17 (diff) | |
download | bcm5719-llvm-d791d8e427a96ab3893573fb71f266bbb727438b.tar.gz bcm5719-llvm-d791d8e427a96ab3893573fb71f266bbb727438b.zip |
Remove support for the MultiObject flag, which was fundamentally broken
llvm-svn: 6840
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/DataStructureAA.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/DataStructureAA.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/DataStructure/DataStructureAA.cpp b/llvm/lib/Analysis/DataStructure/DataStructureAA.cpp index d7c40c6f5a6..3c89e6d2670 100644 --- a/llvm/lib/Analysis/DataStructure/DataStructureAA.cpp +++ b/llvm/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... |