X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=liblttng-ust%2Flttng-bytecode-validator.c;fp=liblttng-ust%2Flttng-bytecode-validator.c;h=267c5c19635a3ab56fe454ee80357c3fc1b60a7c;hb=2208d8b5689264e35ed0a660d8c3c82021cc0367;hp=68b9e008a111144aa6fb77ddf2c908dbc5b7d911;hpb=c53279a3e7796da67c5ad8d5e5657bf03def2dcb;p=lttng-ust.git diff --git a/liblttng-ust/lttng-bytecode-validator.c b/liblttng-ust/lttng-bytecode-validator.c index 68b9e008..267c5c19 100644 --- a/liblttng-ust/lttng-bytecode-validator.c +++ b/liblttng-ust/lttng-bytecode-validator.c @@ -209,7 +209,8 @@ error_type: * (unknown), negative error value on error. */ static -int bin_op_bitwise_check(struct vstack *stack, bytecode_opcode_t opcode, +int bin_op_bitwise_check(struct vstack *stack, + bytecode_opcode_t opcode __attribute__((unused)), const char *str) { if (unlikely(!vstack_ax(stack) || !vstack_bx(stack))) @@ -553,7 +554,8 @@ unsigned long delete_all_nodes(struct lttng_ust_lfht *ht) * <0: error */ static -int validate_instruction_context(struct bytecode_runtime *bytecode, +int validate_instruction_context( + struct bytecode_runtime *bytecode __attribute__((unused)), struct vstack *stack, char *start_pc, char *pc) @@ -1254,7 +1256,7 @@ int validate_instruction_all_contexts(struct bytecode_runtime *bytecode, * <0: error */ static -int exec_insn(struct bytecode_runtime *bytecode, +int exec_insn(struct bytecode_runtime *bytecode __attribute__((unused)), struct lttng_ust_lfht *merge_points, struct vstack *stack, char **_next_pc,