summaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis/InductionVariable.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Analysis/InductionVariable.h')
-rw-r--r--include/llvm/Analysis/InductionVariable.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Analysis/InductionVariable.h b/include/llvm/Analysis/InductionVariable.h
index 5139955..951ac05 100644
--- a/include/llvm/Analysis/InductionVariable.h
+++ b/include/llvm/Analysis/InductionVariable.h
@@ -22,7 +22,7 @@
class Value;
class PHINode;
class Instruction;
-namespace cfg { class LoopInfo; class Loop; }
+class LoopInfo; class Loop;
class InductionVariable {
public:
@@ -40,11 +40,11 @@ public:
// Create an induction variable for the specified value. If it is a PHI, and
// if it's recognizable, classify it and fill in instance variables.
//
- InductionVariable(PHINode *PN, cfg::LoopInfo *LoopInfo = 0);
+ InductionVariable(PHINode *PN, LoopInfo *LoopInfo = 0);
// Classify Induction
static enum iType Classify(const Value *Start, const Value *Step,
- const cfg::Loop *L = 0);
+ const Loop *L = 0);
};
#endif