commit | 4781bc7142b3e5f534956f4c3101de1bd10959b4 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Mar 17 23:22:04 2004 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Mar 17 23:22:04 2004 +0000 |
tree | 379857043184a147a7f14a59126b3af53ae4047c | |
parent | a577630ec0b692e1691dd209157b824c60258fcf [diff] [blame] |
Fix a HORRIBLY NASTY bug that caused siod to stop working last night. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12479 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/AliasSetTracker.cpp b/lib/Analysis/AliasSetTracker.cpp index 0fb4192..303d798 100644 --- a/lib/Analysis/AliasSetTracker.cpp +++ b/lib/Analysis/AliasSetTracker.cpp
@@ -101,7 +101,7 @@ return; else if (AA.onlyReadsMemory(F)) { AliasTy = MayAlias; - AccessTy = Refs; + AccessTy |= Refs; return; } }