mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-07 15:14:08 +00:00
Reduce whitespace in lj_bcdef.h.
This commit is contained in:
parent
6194b1c896
commit
f86f9e8eec
@ -256,12 +256,12 @@ static void emit_bcdef(BuildCtx *ctx)
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
fprintf(ctx->fp, "/* This is a generated file. DO NOT EDIT! */\n\n");
|
fprintf(ctx->fp, "/* This is a generated file. DO NOT EDIT! */\n\n");
|
||||||
fprintf(ctx->fp, "LJ_DATADEF const uint16_t lj_bc_ofs[BC__MAX+1] = {\n ");
|
fprintf(ctx->fp, "LJ_DATADEF const uint16_t lj_bc_ofs[BC__MAX+1] = {\n ");
|
||||||
for (i = 0; i < ctx->npc; i++) {
|
for (i = 0; i < ctx->npc; i++) {
|
||||||
fprintf(ctx->fp, "%4d, ", ctx->sym_ofs[i]);
|
fprintf(ctx->fp, " %4d,", ctx->sym_ofs[i]);
|
||||||
if ((i & 7) == 7) fprintf(ctx->fp, "\n ");
|
if ((i & 7) == 7) fprintf(ctx->fp, "\n ");
|
||||||
}
|
}
|
||||||
fprintf(ctx->fp, "0\n};\n\n");
|
fprintf(ctx->fp, " 0\n};\n\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Emit VM definitions as Lua code for debug modules. */
|
/* Emit VM definitions as Lua code for debug modules. */
|
||||||
|
Loading…
Reference in New Issue
Block a user