forked from OSchip/llvm-project
Remove unnecessary attributions in comments.
llvm-svn: 37799
This commit is contained in:
parent
869e4b5dac
commit
4c1e6f3804
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue