diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/llvm/Analysis/AliasAnalysis.h | 6 | ||||
| -rw-r--r-- | include/llvm/Analysis/Passes.h | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/include/llvm/Analysis/AliasAnalysis.h b/include/llvm/Analysis/AliasAnalysis.h index 9f41135..174482f 100644 --- a/include/llvm/Analysis/AliasAnalysis.h +++ b/include/llvm/Analysis/AliasAnalysis.h @@ -344,10 +344,10 @@ bool isNoAliasCall(const Value *V); /// identifiable object. This returns true for: /// Global Variables and Functions (but not Global Aliases) /// Allocas and Mallocs -/// ByVal and NoAlias Arguments -/// NoAlias returns +/// ByVal and NoAlias Arguments, if Interprocedural is false +/// NoAlias returns, if Interprocedural is false /// -bool isIdentifiedObject(const Value *V); +bool isIdentifiedObject(const Value *V, bool Interprocedural = false); } // End llvm namespace diff --git a/include/llvm/Analysis/Passes.h b/include/llvm/Analysis/Passes.h index b3fe2c6..a81cb87 100644 --- a/include/llvm/Analysis/Passes.h +++ b/include/llvm/Analysis/Passes.h @@ -73,6 +73,14 @@ namespace llvm { //===--------------------------------------------------------------------===// // + // createInterproceduralBasicAliasAnalysisPass - This pass is similar to + // baiscaa, except that it properly supports queries to values which live + // in different functions. + // + ImmutablePass *createInterproceduralBasicAliasAnalysisPass(); + + //===--------------------------------------------------------------------===// + // /// createLibCallAliasAnalysisPass - Create an alias analysis pass that knows /// about the semantics of a set of libcalls specified by LCI. The newly /// constructed pass takes ownership of the pointer that is provided. |
