Add an include guard for insns_info.inc

The JIT bindgens need this.
This commit is contained in:
Alan Wu 2025-05-01 17:33:27 +09:00
parent dd0e0eb4ac
commit aafd10616d
Notes: git 2025-05-02 14:48:12 +00:00

View File

@ -11,6 +11,8 @@
this_file: 'contains instruction information for yarv instruction sequence.',
edit: __FILE__,
} %>
#ifndef INSNS_INFO_INC
#define INSNS_INFO_INC 1
<%= render 'insn_type_chars' %>
<%= render 'insn_name_info' %>
<%= render 'insn_len_info' %>
@ -20,3 +22,4 @@
<%= render 'zjit_helpers' %>
<%= render 'attributes' %>
<%= render 'comptime_insn_stack_increase' %>
#endif