aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis/Passes.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-09-16 22:08:32 +0000
committerDan Gohman <gohman@apple.com>2010-09-16 22:08:32 +0000
commitead0109f5bc010af837d0fa7c9bb2401b34fb29d (patch)
treec75734b3f9de25fa71bf071008ddfb05069a807c /include/llvm/Analysis/Passes.h
parent1905a18abcb46e6a57eeaa291cd81fc669cedfd0 (diff)
downloadexternal_llvm-ead0109f5bc010af837d0fa7c9bb2401b34fb29d.zip
external_llvm-ead0109f5bc010af837d0fa7c9bb2401b34fb29d.tar.gz
external_llvm-ead0109f5bc010af837d0fa7c9bb2401b34fb29d.tar.bz2
Add a pass which prints out all the memdep dependencies.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114121 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/Passes.h')
-rw-r--r--include/llvm/Analysis/Passes.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/llvm/Analysis/Passes.h b/include/llvm/Analysis/Passes.h
index 37425eb..5541a84 100644
--- a/include/llvm/Analysis/Passes.h
+++ b/include/llvm/Analysis/Passes.h
@@ -170,6 +170,13 @@ namespace llvm {
// Print module-level debug info metadata in human-readable form.
ModulePass *createModuleDebugInfoPrinterPass();
+
+ //===--------------------------------------------------------------------===//
+ //
+ // createMemDepPrinter - This pass exhaustively collects all memdep
+ // information and prints it with -analyze.
+ //
+ FunctionPass *createMemDepPrinter();
}
#endif