Add a note

llvm-svn: 10617
This commit is contained in:
Chris Lattner 2003-12-28 04:03:49 +00:00
parent 5a0d48290f
commit 5f4c6f55b6
1 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,11 @@
// that simply implements a few identities (two different globals cannot alias,
// etc), but otherwise does no analysis.
//
// FIXME: This could be extended for a very simple form of mod/ref information.
// If a pointer is locally allocated (either malloc or alloca) and never passed
// into a call or stored to memory, then we know that calls will not mod/ref the
// memory. This can be important for tailcallelim.
//
//===----------------------------------------------------------------------===//
#include "llvm/Analysis/AliasAnalysis.h"