summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2006-06-11 19:22:28 +0000
committerOwen Anderson <resistor@mac.com>2006-06-11 19:22:28 +0000
commitc2cc15cf9d926b8de41dabba86005a55806127a0 (patch)
tree39d433091ee79472ea511a0d5a6f39ebd7725016 /include/llvm/Analysis
parentb9b2b309d3195d9e2ed1e72da8566a470783e8d7 (diff)
downloadllvm-c2cc15cf9d926b8de41dabba86005a55806127a0.tar.gz
llvm-c2cc15cf9d926b8de41dabba86005a55806127a0.tar.bz2
llvm-c2cc15cf9d926b8de41dabba86005a55806127a0.tar.xz
Re-commit the safe parts of my 6/9 patch. Still working on fixing the unsafe parts.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28748 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r--include/llvm/Analysis/LoopInfo.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h
index 06b007cf3f..17363df395 100644
--- a/include/llvm/Analysis/LoopInfo.h
+++ b/include/llvm/Analysis/LoopInfo.h
@@ -146,6 +146,9 @@ public:
/// this returns null.
///
Value *getTripCount() const;
+
+ /// isLCSSAForm - Return true if the Loop is in LCSSA form
+ bool isLCSSAForm() const;
//===--------------------------------------------------------------------===//
// APIs for updating loop information after changing the CFG