[llvm-commits] [llvm] r150248 - /llvm/trunk/include/llvm/Analysis/AliasSetTracker.h

Hal Finkel hfinkel at anl.gov
Fri Feb 10 07:52:37 PST 2012


Author: hfinkel
Date: Fri Feb 10 09:52:37 2012
New Revision: 150248

URL: http://llvm.org/viewvc/llvm-project?rev=150248&view=rev
Log:
Make aliasesPointer and aliasesUnknownInst public members of AliasSet.

These query functions are safe for external use and, furthermore,
are the only way to make queries against the "unknown instructions" array.
BBVectorize will use these functions.

Modified:
    llvm/trunk/include/llvm/Analysis/AliasSetTracker.h

Modified: llvm/trunk/include/llvm/Analysis/AliasSetTracker.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/AliasSetTracker.h?rev=150248&r1=150247&r2=150248&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/AliasSetTracker.h (original)
+++ llvm/trunk/include/llvm/Analysis/AliasSetTracker.h Fri Feb 10 09:52:37 2012
@@ -264,6 +264,7 @@
   }
   void setVolatile() { Volatile = true; }
 
+public:
   /// aliasesPointer - Return true if the specified pointer "may" (or must)
   /// alias one of the members in the set.
   ///





More information about the llvm-commits mailing list