mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-09 01:29:23 +00:00
Fixes for some of clang warnings
This commit is contained in:
parent
5ae6586803
commit
582329ffc6
2 changed files with 2 additions and 2 deletions
|
@ -4390,7 +4390,7 @@ private:
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
CPU.SetFPSCR_FI(1);
|
CPU.SetFPSCR_FI(1);
|
||||||
CPU.FPSCR.FR = abs(bfi) > abs(bi);
|
CPU.FPSCR.FR = std::abs(bfi) > std::abs(bi);
|
||||||
}
|
}
|
||||||
|
|
||||||
CPU.FPR[frd] = bf;
|
CPU.FPR[frd] = bf;
|
||||||
|
|
|
@ -1228,7 +1228,7 @@ namespace ppu_recompiler_llvm {
|
||||||
{}
|
{}
|
||||||
~CustomSectionMemoryManager() override {}
|
~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);
|
std::unordered_map<std::string, Executable>::const_iterator It = executableMap.find(Name);
|
||||||
if (It != executableMap.end())
|
if (It != executableMap.end())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue