From dfb75d9b6ccbf57fe2ec2768a118224034d72829 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Mon, 8 May 2017 20:26:59 +0200 Subject: Remove some unused arguments these ones are really superfluous. --- tccasm.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tccasm.c') diff --git a/tccasm.c b/tccasm.c index 4d93b59..c8b2666 100644 --- a/tccasm.c +++ b/tccasm.c @@ -1087,7 +1087,6 @@ ST_FUNC int find_constraint(ASMOperand *operands, int nb_operands, } static void subst_asm_operands(ASMOperand *operands, int nb_operands, - int nb_outputs, CString *out_str, CString *in_str) { int c, index, modifier; @@ -1256,7 +1255,7 @@ ST_FUNC void asm_instr(void) printf("asm: \"%s\"\n", (char *)astr.data); #endif if (must_subst) { - subst_asm_operands(operands, nb_operands, nb_outputs, &astr1, &astr); + subst_asm_operands(operands, nb_operands, &astr1, &astr); cstr_free(&astr); } else { astr1 = astr; -- cgit v1.3.1