1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2025-02-01 04:51:49 +01:00

Fixes for some of clang warnings

This commit is contained in:
Danila Malyutin 2015-07-26 23:24:37 +03:00
parent 5ae6586803
commit 582329ffc6
2 changed files with 2 additions and 2 deletions

View File

@ -4390,7 +4390,7 @@ private:
else
{
CPU.SetFPSCR_FI(1);
CPU.FPSCR.FR = abs(bfi) > abs(bi);
CPU.FPSCR.FR = std::abs(bfi) > std::abs(bi);
}
CPU.FPR[frd] = bf;

View File

@ -1228,7 +1228,7 @@ namespace ppu_recompiler_llvm {
{}
~CustomSectionMemoryManager() override {}
virtual uint64_t getSymbolAddress(const std::string &Name)
virtual uint64_t getSymbolAddress(const std::string &Name) override
{
std::unordered_map<std::string, Executable>::const_iterator It = executableMap.find(Name);
if (It != executableMap.end())