diff options
author | Chris Lattner <sabre@nondot.org> | 2003-05-03 03:42:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-05-03 03:42:08 +0000 |
commit | 577385edd80d4560347ead1174a44794124206fd (patch) | |
tree | 85729b6a01e6c8cee03f6be020fc8669b9c513bb /lib/Analysis/AliasSetTracker.cpp | |
parent | bc8e9c6f56bfa7b7bef437742be8c3036934a757 (diff) |
Fix miscompilation in Fhourstones and bug: LICM/2003-05-02-LoadHoist.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5994 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/AliasSetTracker.cpp')
-rw-r--r-- | lib/Analysis/AliasSetTracker.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Analysis/AliasSetTracker.cpp b/lib/Analysis/AliasSetTracker.cpp index 7130a60dc8..f00e5c8b31 100644 --- a/lib/Analysis/AliasSetTracker.cpp +++ b/lib/Analysis/AliasSetTracker.cpp @@ -85,6 +85,7 @@ void AliasSet::addPointer(AliasSetTracker &AST, HashNodePair &Entry, void AliasSet::addCallSite(CallSite CS) { CallSites.push_back(CS); AliasTy = MayAlias; // FIXME: Too conservative? + AccessTy = ModRef; } /// aliasesPointer - Return true if the specified pointer "may" (or must) |