From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45373) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRUe7-0007fn-Vr for qemu-devel@nongnu.org; Tue, 09 Sep 2014 19:16:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XRUdy-0006dc-Ul for qemu-devel@nongnu.org; Tue, 09 Sep 2014 19:16:23 -0400 Received: from mail-pa0-x22b.google.com ([2607:f8b0:400e:c03::22b]:58658) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRUdy-0006dQ-NC for qemu-devel@nongnu.org; Tue, 09 Sep 2014 19:16:14 -0400 Received: by mail-pa0-f43.google.com with SMTP id fa1so5697978pad.16 for ; Tue, 09 Sep 2014 16:16:13 -0700 (PDT) From: Max Filippov Date: Tue, 9 Sep 2014 16:09:22 -0700 Message-Id: <1410304162-13694-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH v2] tcg/README: fix movcond/brcond 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 and brcond have its cond argument first. Fix that in documentation. Signed-off-by: Max Filippov --- Changes v1 -> v2: - fix similar brcond issue tcg/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tcg/README b/tcg/README index a550ff1..c538b3b 100644 --- a/tcg/README +++ b/tcg/README @@ -155,7 +155,7 @@ Define label 'label' at the current program point. Jump to label. -* brcond_i32/i64 t0, t1, cond, label +* brcond_i32/i64 cond, t0, t1, label Conditional jump if t0 cond t1 is true. cond can be: TCG_COND_EQ @@ -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