From d5d881d9e946351f00cbc851b965f62553f6e830 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Mon, 27 Jun 2016 20:21:57 +0200 Subject: x86-asm: Accept 'q' modifier In inline extended asm '%q1' refers to the 64bit register of operand 1. --- tccasm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tccasm.c') diff --git a/tccasm.c b/tccasm.c index e8bc357..50fb794 100644 --- a/tccasm.c +++ b/tccasm.c @@ -946,7 +946,7 @@ static void subst_asm_operands(ASMOperand *operands, int nb_operands, modifier = 0; if (*str == 'c' || *str == 'n' || *str == 'b' || *str == 'w' || - *str == 'h' || *str == 'k') + *str == 'h' || *str == 'k' || *str == 'q') modifier = *str++; index = find_constraint(operands, nb_operands, str, &str); if (index < 0) -- cgit v1.3.1