diff options
author | Chris Lattner <sabre@nondot.org> | 2002-09-10 15:35:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-09-10 15:35:39 +0000 |
commit | 74493a4c6e3c2e2c1918959dcb631f95e5a28dce (patch) | |
tree | 1eee0003846e3b60d4bc7148248d904d3f24da86 | |
parent | a690c590dc064db78675753aa7d44c9b09798ca5 (diff) |
Clean up indvar printing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3650 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Analysis/InductionVariable.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Analysis/InductionVariable.cpp b/lib/Analysis/InductionVariable.cpp index 5703d6de2c..ec6461ccdc 100644 --- a/lib/Analysis/InductionVariable.cpp +++ b/lib/Analysis/InductionVariable.cpp @@ -160,7 +160,7 @@ void InductionVariable::print(std::ostream &o) const { case InductionVariable::Linear: o << "Linear "; break; case InductionVariable::Unknown: o << "Unrecognized "; break; } - o << "Induction Variable"; + o << "Induction Variable: "; if (Phi) { WriteAsOperand(o, Phi); o << ":\n" << Phi; @@ -169,7 +169,7 @@ void InductionVariable::print(std::ostream &o) const { } if (InductionType == InductionVariable::Unknown) return; - o << " Start ="; WriteAsOperand(o, Start); - o << " Step =" ; WriteAsOperand(o, Step); + o << " Start = "; WriteAsOperand(o, Start); + o << " Step = " ; WriteAsOperand(o, Step); o << "\n"; } |