forked from OSchip/llvm-project
Simplify; NFC
Not shown in the diff: AQ is a `vector<SUnit *>`, and SU is a `SUnit *` llvm-svn: 334451
This commit is contained in:
parent
1c05c95739
commit
c72204d5b5
|
@ -459,7 +459,7 @@ SUnit* R600SchedStrategy::pickOther(int QID) {
|
|||
}
|
||||
if (!AQ.empty()) {
|
||||
SU = AQ.back();
|
||||
AQ.resize(AQ.size() - 1);
|
||||
AQ.pop_back();
|
||||
}
|
||||
return SU;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue