Skip to content

Commit

Permalink
Fix build failure on 32-bit systems. Fixes #1133
Browse files Browse the repository at this point in the history
  • Loading branch information
nickg committed Jan 18, 2025
1 parent 4991946 commit e550787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jit/jit-priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ typedef struct {
jit_value_t arg2;
} jit_ir_t;

STATIC_ASSERT(sizeof(jit_ir_t) == 40);
STATIC_ASSERT(sizeof(jit_ir_t) <= 40);

typedef struct _jit_tier jit_tier_t;
typedef struct _jit_func jit_func_t;
Expand Down

0 comments on commit e550787

Please sign in to comment.