X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=oberon.h;h=d481e130b6e89c06e8b3227cc882e2be2339ecbc;hb=679da1b129ba6077d1c44ebdf260d3813afdcf65;hp=09a24c98caeaa08f59b50e8b562035b261acd9d7;hpb=d3438ae51da4c98b47441911495f10e686191abd;p=dsw-obn.git diff --git a/oberon.h b/oberon.h index 09a24c9..d481e13 100644 --- a/oberon.h +++ b/oberon.h @@ -11,32 +11,32 @@ typedef struct gen_context_s gen_context_t; struct gen_proc_s { - gcc_jit_function * gcc_func; + gcc_jit_function * gcc_func; }; struct gen_type_s { - gcc_jit_type * gcc_type; - gcc_jit_struct * gcc_struct; + gcc_jit_type * gcc_type; + gcc_jit_struct * gcc_struct; }; struct gen_var_s { - gcc_jit_lvalue * gcc_lvalue; - gcc_jit_param * gcc_param; - gcc_jit_field * gcc_field; + gcc_jit_lvalue * gcc_lvalue; + gcc_jit_param * gcc_param; + gcc_jit_field * gcc_field; }; struct gen_block_s { - gcc_jit_block * gcc_block; + gcc_jit_block * gcc_block; gen_block_t * up; }; struct gen_context_s { - gcc_jit_context * gcc_context; - gcc_jit_result * gcc_result; + gcc_jit_context * gcc_context; + gcc_jit_result * gcc_result; gen_block_t * block; unsigned record_count; };