Skip to content

Commit

Permalink
Merge pull request #1946 from lioncash/x86dep
Browse files Browse the repository at this point in the history
x86_64/JIT: Resolve lingering fmt deprecation warning
  • Loading branch information
Sonicadvance1 authored Aug 31, 2022
2 parents 8439cf4 + 79674c6 commit 37ccb13
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion External/FEXCore/Source/Interface/Core/JIT/x86_64/JIT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ desc: Main glue logic of the x86-64 splatter backend
#include <FEXCore/IR/IntrusiveIRList.h>
#include <FEXCore/IR/RegisterAllocationData.h>
#include <FEXCore/Utils/Allocator.h>
#include <FEXCore/Utils/EnumUtils.h>
#include <FEXCore/Utils/LogManager.h>

#include <algorithm>
Expand Down Expand Up @@ -293,7 +294,8 @@ void X86JITCore::Op_Unhandled(IR::IROp_Header *IROp, IR::NodeID Node) {
case FABI_UNKNOWN:
default:
#if defined(ASSERTIONS_ENABLED) && ASSERTIONS_ENABLED
LOGMAN_MSG_A_FMT("Unhandled IR Fallback ABI: {} {}", FEXCore::IR::GetName(IROp->Op), Info.ABI);
LOGMAN_MSG_A_FMT("Unhandled IR Fallback ABI: {} {}",
IR::GetName(IROp->Op), ToUnderlying(Info.ABI));
#endif
break;
}
Expand Down

0 comments on commit 37ccb13

Please sign in to comment.