aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-10 05:08:19 +0000
committerChris Lattner <sabre@nondot.org>2003-09-10 05:08:19 +0000
commitf6e5233fc73db25c6136626e09b1b986ee956651 (patch)
tree9f85c5cb1874d45bde7635144a8e3adf5056ed00 /lib
parent36836a6eb20cca707b4c7db86d09c8dbc52e6490 (diff)
downloadexternal_llvm-f6e5233fc73db25c6136626e09b1b986ee956651.zip
external_llvm-f6e5233fc73db25c6136626e09b1b986ee956651.tar.gz
external_llvm-f6e5233fc73db25c6136626e09b1b986ee956651.tar.bz2
clean up file header comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8427 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Analysis/InductionVariable.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Analysis/InductionVariable.cpp b/lib/Analysis/InductionVariable.cpp
index 73e97a4..9a93adf 100644
--- a/lib/Analysis/InductionVariable.cpp
+++ b/lib/Analysis/InductionVariable.cpp
@@ -1,9 +1,9 @@
-//===- llvm/Analysis/InductionVariable.h - Induction variable ----*- C++ -*--=//
+//===- InductionVariable.cpp - Induction variable classification ----------===//
//
-// This interface is used to identify and classify induction variables that
-// exist in the program. Induction variables must contain a PHI node that
-// exists in a loop header. Because of this, they are identified an managed by
-// this PHI node.
+// This file implements identification and classification of induction
+// variables. Induction variables must contain a PHI node that exists in a
+// loop header. Because of this, they are identified an managed by this PHI
+// node.
//
// Induction variables are classified into a type. Knowing that an induction
// variable is of a specific type can constrain the values of the start and