I don't have polly setup to bulld locally and don't plan to. This should let the old API adapt to the new one. Can someone from polly please migrate usage and then delete the wrapper?
llvm-svn: 339937
/// set is returned.
AliasSet &getAliasSetFor(const MemoryLocation &MemLoc);
+ AliasSet &getAliasSetForPointer(Value *P, LocationSize Size,
+ const AAMDNodes &AAInfo) {
+ // This adapter exists so that polly can be updated to the new API. Once
+ // done, please delete this.
+ return getAliasSetFor(MemoryLocation(P, Size, AAInfo));
+ }
+
/// Return true if the specified instruction "may" (or must) alias one of the
/// members in any of the sets.
bool containsUnknown(const Instruction *I) const;