* Standardize how analysis results/passes as printed with the print() virtual
[oota-llvm.git] / include / llvm / Analysis / InductionVariable.h
index 951ac05135214ffc2f54dbf81ea5ad82e68a7ec6..36dcaebda00e01e51597317a547f7ddd6258a691 100644 (file)
@@ -19,6 +19,7 @@
 #ifndef LLVM_ANALYSIS_INDUCTIONVARIABLE_H
 #define LLVM_ANALYSIS_INDUCTIONVARIABLE_H
 
+#include <iosfwd>
 class Value;
 class PHINode;
 class Instruction;
@@ -45,6 +46,8 @@ public:
   // Classify Induction
   static enum iType Classify(const Value *Start, const Value *Step,
                             const Loop *L = 0);
+
+  void print(std::ostream &OS) const;
 };
 
 #endif