[llvm-commits] CVS: llvm/include/llvm/Analysis/InductionVariable.h

Chris Lattner lattner at cs.uiuc.edu
Wed Sep 10 00:25:09 PDT 2003


Changes in directory llvm/include/llvm/Analysis:

InductionVariable.h updated: 1.5 -> 1.6

---
Log message:

Spelling fixes


---
Diffs of the changes:

Index: llvm/include/llvm/Analysis/InductionVariable.h
diff -u llvm/include/llvm/Analysis/InductionVariable.h:1.5 llvm/include/llvm/Analysis/InductionVariable.h:1.6
--- llvm/include/llvm/Analysis/InductionVariable.h:1.5	Fri Oct 11 00:34:32 2002
+++ llvm/include/llvm/Analysis/InductionVariable.h	Wed Sep 10 00:24:09 2003
@@ -1,4 +1,4 @@
-//===- llvm/Analysis/InductionVariable.h - Induction variable ----*- C++ -*--=//
+//===- llvm/Analysis/InductionVariable.h - Induction variables --*- C++ -*-===//
 //
 // This interface is used to identify and classify induction variables that
 // exist in the program.  Induction variables must contain a PHI node that
@@ -28,7 +28,7 @@
 class InductionVariable {
 public:
   enum iType {               // Identify the type of this induction variable
-    Cannonical,              // Starts at 0, counts by 1
+    Canonical,               // Starts at 0, counts by 1
     SimpleLinear,            // Simple linear: Constant start, constant step
     Linear,                  // General linear:  loop invariant start, and step
     Unknown,                 // Unknown type.  Start & Step are null





More information about the llvm-commits mailing list