docs/devel/tcg-ops: Fix reStructuredText format
In the standard reStructuredText inline markup, italic text is surrounded by one asterisk. Fix incomplete style from commits 5e97a28a8b9 ("tcg: convert tcg/README to rst") and 76f42780292 ("tcg: Add add/sub with carry opcodes and infrastructure"). Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20260519210019.11665-1-philmd@linaro.org>
Philippe Mathieu-Daudé committed
May 19, 2026 at 23:00 UTC
faf1bfdd63e54b0f7130a30aeb36f4a263418876
1 file changed
+8
-8
docs/devel/tcg-ops.rst
+8
-8
@@ -563,9 +563,9 @@ Load/Store
563
564
ld16u_i32/i64 *t0*, *t1*, *offset*
565
566
- ld32s_i64 t0, *t1*, *offset*
566
+ ld32s_i64 *t0*, *t1*, *offset*
567
568
- ld32u_i64 t0, *t1*, *offset*
568
+ ld32u_i64 *t0*, *t1*, *offset*
569
570
- | *t0* = read(*t1* + *offset*)
571
|
@@ -598,19 +598,19 @@ Multiword arithmetic support
598
- | Compute *t0* = *t1* + *t2* and in addition output to the
599
carry bit provided by the host architecture.
600
601
- * - addci *t0, *t1*, *t2*
601
+ * - addci *t0*, *t1*, *t2*
602
603
- | Compute *t0* = *t1* + *t2* + *C*, where *C* is the
604
input carry bit provided by the host architecture.
605
The output carry bit need not be computed.
606
607
- * - addcio *t0, *t1*, *t2*
607
+ * - addcio *t0*, *t1*, *t2*
608
609
- | Compute *t0* = *t1* + *t2* + *C*, where *C* is the
610
input carry bit provided by the host architecture,
611
and also compute the output carry bit.
612
613
- * - addc1o *t0, *t1*, *t2*
613
+ * - addc1o *t0*, *t1*, *t2*
614
615
- | Compute *t0* = *t1* + *t2* + 1, and in addition output to the
616
carry bit provided by the host architecture. This is akin to
@@ -630,19 +630,19 @@ Multiword arithmetic support
630
identical to the borrow bit. Thus the addc\* and subb\*
631
opcodes must not be mixed.
632
633
- * - subbi *t0, *t1*, *t2*
633
+ * - subbi *t0*, *t1*, *t2*
634
635
- | Compute *t0* = *t1* - *t2* - *B*, where *B* is the
636
input borrow bit provided by the host architecture.
637
The output borrow bit need not be computed.
638
639
- * - subbio *t0, *t1*, *t2*
639
+ * - subbio *t0*, *t1*, *t2*
640
641
- | Compute *t0* = *t1* - *t2* - *B*, where *B* is the
642
input borrow bit provided by the host architecture,
643
and also compute the output borrow bit.
644
645
- * - subb1o *t0, *t1*, *t2*
645
+ * - subb1o *t0*, *t1*, *t2*
646
647
- | Compute *t0* = *t1* - *t2* - 1, and in addition output to the
648
borrow bit provided by the host architecture. This is akin to