aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-10 05:24:09 +0000
committerChris Lattner <sabre@nondot.org>2003-09-10 05:24:09 +0000
commit69ecd0d7e75e839c7f1e816d30f855d5fd6fbdea (patch)
tree2c9d59b5acb1dfea71de952f92c97e8b1cbd1acc /include
parentc01ccfd503057b60053c5e8bf4175062de7c3740 (diff)
downloadexternal_llvm-69ecd0d7e75e839c7f1e816d30f855d5fd6fbdea.zip
external_llvm-69ecd0d7e75e839c7f1e816d30f855d5fd6fbdea.tar.gz
external_llvm-69ecd0d7e75e839c7f1e816d30f855d5fd6fbdea.tar.bz2
Spelling fixes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8429 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/InductionVariable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/InductionVariable.h b/include/llvm/Analysis/InductionVariable.h
index 0282eb0..053cdc3 100644
--- a/include/llvm/Analysis/InductionVariable.h
+++ b/include/llvm/Analysis/InductionVariable.h
@@ -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 LoopInfo; class Loop;
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