Remove unnecessary attributions in comments.
authorDavid Greene <greened@obbligato.org>
Fri, 29 Jun 2007 03:42:23 +0000 (03:42 +0000)
committerDavid Greene <greened@obbligato.org>
Fri, 29 Jun 2007 03:42:23 +0000 (03:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37799 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

index 50533580bf37f3033ccb63c1b9b3696eef5d8957..8feda9a0e007c790279897eadf9252e50e07dac5 100644 (file)
@@ -618,7 +618,7 @@ bool bu_ls_rr_sort::operator()(const SUnit *left, const SUnit *right) const {
   bool LIsTarget = left->Node->isTargetOpcode();
   bool RIsTarget = right->Node->isTargetOpcode();
 
-  // Cray: There used to be a special tie breaker here that looked for
+  // There used to be a special tie breaker here that looked for
   // two-address instructions and preferred the instruction with a
   // def&use operand.  The special case triggered diagnostics when
   // _GLIBCXX_DEBUG was enabled because it broke the strict weak
index 6251d381be1b37b4940508a43c5794d2d7045a98..6fe78cc9cae63d719b772654483aeb67e1e7c779 100644 (file)
@@ -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();