Skip to content

Commit

Permalink
Revert change to print output to keep tests passing
Browse files Browse the repository at this point in the history
  • Loading branch information
dschuff committed Oct 7, 2015
1 parent 0062770 commit 64fb062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wasm-gen.c
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ static void after_assert_return(WasmType type,
out_u8_at(&ctx->buf, offset, opcode, "FIXUP assert_return opcode");

char name[256];
snprintf(name, 256, "$assert_return_%d", ctx->assert_return_count++);
snprintf(name, 256, "$assert_eq_%d", ctx->assert_return_count++);
append_nullary_function(ctx, name, WASM_TYPE_I32);

ctx->in_assert = 0;
Expand Down

0 comments on commit 64fb062

Please sign in to comment.