mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Silence the compiler warning differently. The
original method caused gcc-4.2 to complain. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51186 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
df0457241d
commit
419cafb9fb
@ -1317,7 +1317,7 @@ namespace {
|
||||
void remove(SUnit *SU) {
|
||||
assert(!Queue.empty() && "Queue is empty!");
|
||||
size_t RemovedNum = Queue.erase(SU);
|
||||
RemovedNum; // Silence compiler warning.
|
||||
RemovedNum = RemovedNum; // Silence compiler warning.
|
||||
assert(RemovedNum > 0 && "Not in queue!");
|
||||
assert(RemovedNum == 1 && "Multiple times in the queue!");
|
||||
SU->NodeQueueId = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user