diff options
author | Owen Anderson <resistor@mac.com> | 2006-06-11 19:22:28 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2006-06-11 19:22:28 +0000 |
commit | c2cc15cf9d926b8de41dabba86005a55806127a0 (patch) | |
tree | 39d433091ee79472ea511a0d5a6f39ebd7725016 /include/llvm/Analysis | |
parent | b9b2b309d3195d9e2ed1e72da8566a470783e8d7 (diff) | |
download | external_llvm-c2cc15cf9d926b8de41dabba86005a55806127a0.zip external_llvm-c2cc15cf9d926b8de41dabba86005a55806127a0.tar.gz external_llvm-c2cc15cf9d926b8de41dabba86005a55806127a0.tar.bz2 |
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.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h index 06b007c..17363df 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 |