[polly] r239890 - [PM/AA] Update Polly for r239886 which removed UnknownSize from
Chandler Carruth
chandlerc at gmail.com
Wed Jun 17 01:29:32 PDT 2015
Author: chandlerc
Date: Wed Jun 17 03:29:32 2015
New Revision: 239890
URL: http://llvm.org/viewvc/llvm-project?rev=239890&view=rev
Log:
[PM/AA] Update Polly for r239886 which removed UnknownSize from
AliasAnalysis by getting it from its newly canonical home of
MemoryLocation::UnknownSize.
Modified:
polly/trunk/lib/Analysis/ScopDetection.cpp
Modified: polly/trunk/lib/Analysis/ScopDetection.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Analysis/ScopDetection.cpp?rev=239890&r1=239889&r2=239890&view=diff
==============================================================================
--- polly/trunk/lib/Analysis/ScopDetection.cpp (original)
+++ polly/trunk/lib/Analysis/ScopDetection.cpp Wed Jun 17 03:29:32 2015
@@ -634,7 +634,7 @@ bool ScopDetection::isValidMemoryAccess(
AAMDNodes AATags;
Inst.getAAMetadata(AATags);
AliasSet &AS = Context.AST.getAliasSetForPointer(
- BaseValue, AliasAnalysis::UnknownSize, AATags);
+ BaseValue, MemoryLocation::UnknownSize, AATags);
// INVALID triggers an assertion in verifying mode, if it detects that a
// SCoP was detected by SCoP detection and that this SCoP was invalidated by
More information about the llvm-commits
mailing list