Skip to content

Commit 11e86d2

Browse files
authored
Make struct jit_ctx more debugger friendly (#847)
1 parent 8408563 commit 11e86d2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/hlmodule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ typedef struct {
103103
bool large;
104104
} hl_debug_infos;
105105

106-
typedef struct jit_ctx jit_ctx;
106+
typedef struct _jit_ctx jit_ctx;
107107

108108

109109
typedef struct {

src/jit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ static const int RCPU_SCRATCH_REGS[] = { Eax, Ecx, Edx };
273273
static preg _unused = { RUNUSED, 0, 0, NULL };
274274
static preg *UNUSED = &_unused;
275275

276-
struct jit_ctx {
276+
struct _jit_ctx {
277277
union {
278278
unsigned char *b;
279279
unsigned int *w;

0 commit comments

Comments
 (0)