mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
asmjit: mame changes (nw)
This commit is contained in:
parent
19214dd8e6
commit
c70d979b7e
2 changed files with 3 additions and 1 deletions
2
3rdparty/asmjit/src/asmjit/core/api-config.h
vendored
2
3rdparty/asmjit/src/asmjit/core/api-config.h
vendored
|
@ -139,6 +139,8 @@ namespace asmjit {
|
|||
// [asmjit::Options]
|
||||
// ============================================================================
|
||||
|
||||
#define ASMJIT_STATIC
|
||||
|
||||
// ASMJIT_NO_BUILDER implies ASMJIT_NO_COMPILER.
|
||||
#if defined(ASMJIT_NO_BUILDER) && !defined(ASMJIT_NO_COMPILER)
|
||||
#define ASMJIT_NO_COMPILER
|
||||
|
|
2
3rdparty/asmjit/src/asmjit/core/compiler.cpp
vendored
2
3rdparty/asmjit/src/asmjit/core/compiler.cpp
vendored
|
@ -553,7 +553,7 @@ Error BaseCompiler::emitAnnotatedJump(uint32_t instId, const Operand_& o0, JumpA
|
|||
resetInlineComment();
|
||||
resetExtraReg();
|
||||
|
||||
JumpNode* node;
|
||||
JumpNode* node = nullptr;
|
||||
ASMJIT_PROPAGATE(newJumpNode(&node, instId, options, o0, annotation));
|
||||
|
||||
node->setExtraReg(extra);
|
||||
|
|
Loading…
Reference in a new issue