PPCAnalyst: Use std::swap instead of making a temporary variable

This commit is contained in:
Lioncash 2014-08-30 18:32:09 -04:00
parent 2c7bcd0d04
commit beb95b75ca
1 changed files with 2 additions and 3 deletions

View File

@ -2,6 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#include <algorithm>
#include <queue>
#include <string>
@ -419,9 +420,7 @@ void PPCAnalyzer::ReorderInstructions(u32 instructions, CodeOp *code)
if (CanSwapAdjacentOps(a, b))
{
// Alright, let's bubble it down!
CodeOp c = a;
a = b;
b = c;
std::swap(a, b);
}
}
}