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:
George Burgess IV 2018-06-11 22:58:32 +00:00
parent 1c05c95739
commit c72204d5b5
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}