aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2007-06-29 03:42:23 +0000
committerDavid Greene <greened@obbligato.org>2007-06-29 03:42:23 +0000
commita2a488594df335efa17bc253436465c2ae984f91 (patch)
tree9d8d861fd5e08b702ebd0d53cf4cbcf01e76a6ff /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
parentcba291821d353f1afbef8e4c04dbe14415240289 (diff)
Remove unnecessary attributions in comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37799 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index 6251d381be..6fe78cc9ca 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -1700,8 +1700,8 @@ unsigned SelectionDAGLowering::Clusterify(CaseVector& Cases,
// Merge case into clusters
if (Cases.size()>=2)
- // Cray [dag]: Must recompute end() each iteration because it may
- // be invalidated by erase if we hold on to it
+ // Must recompute end() each iteration because it may be
+ // invalidated by erase if we hold on to it
for (CaseItr I=Cases.begin(), J=++(Cases.begin()); J!=Cases.end(); ) {
int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();