summaryrefslogtreecommitdiff
path: root/tools/bugpoint
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-01-08 22:40:10 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-01-08 22:40:10 +0000
commitde83cee28b204740aa0801283c5fa22830d70a3c (patch)
tree63b4a7e810b4d465fb4befe546451508ee250f9a /tools/bugpoint
parentce8d090b84f4c20ff3fa661ec4f4dc0ae442ec4c (diff)
downloadllvm-de83cee28b204740aa0801283c5fa22830d70a3c.tar.gz
llvm-de83cee28b204740aa0801283c5fa22830d70a3c.tar.bz2
llvm-de83cee28b204740aa0801283c5fa22830d70a3c.tar.xz
Fix line length of a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint')
-rw-r--r--tools/bugpoint/ListReducer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bugpoint/ListReducer.h b/tools/bugpoint/ListReducer.h
index ff2a11d5e9..484b3b5793 100644
--- a/tools/bugpoint/ListReducer.h
+++ b/tools/bugpoint/ListReducer.h
@@ -95,8 +95,8 @@ struct ListReducer {
}
// Okay, we trimmed as much off the top and the bottom of the list as we
- // could. If there is more two elements in the list, try deleting interior
- // elements and testing that.
+ // could. If there is more than two elements in the list, try deleting
+ // interior elements and testing that.
//
if (TheList.size() > 2) {
bool Changed = true;