From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33218) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRURb-0005Qy-AH for qemu-devel@nongnu.org; Tue, 09 Sep 2014 19:03:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XRURS-0000GR-AG for qemu-devel@nongnu.org; Tue, 09 Sep 2014 19:03:27 -0400 Received: from mail-pa0-x232.google.com ([2607:f8b0:400e:c03::232]:55399) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRURS-0000G6-3L for qemu-devel@nongnu.org; Tue, 09 Sep 2014 19:03:18 -0400 Received: by mail-pa0-f50.google.com with SMTP id bj1so4475355pad.37 for ; Tue, 09 Sep 2014 16:03:16 -0700 (PDT) From: Max Filippov Date: Tue, 9 Sep 2014 16:02:41 -0700 Message-Id: <1410303761-13485-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH] tcg/README: fix movcond cond argument position List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Max Filippov , Richard Henderson movcond has its cond argument first, not last. Fix that in documentation. Signed-off-by: Max Filippov --- tcg/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcg/README b/tcg/README index a550ff1..69f3456 100644 --- a/tcg/README +++ b/tcg/README @@ -328,7 +328,7 @@ dest = (t1 cond t2) Set DEST to 1 if (T1 cond T2) is true, otherwise set to 0. -* movcond_i32/i64 dest, c1, c2, v1, v2, cond +* movcond_i32/i64 cond, dest, c1, c2, v1, v2 dest = (c1 cond c2 ? v1 : v2) -- 1.8.1.4