From 79b9d83947e137fbbd85ac6593df4e27fe37cef3 Mon Sep 17 00:00:00 2001 From: Segher Boessenkool Date: Tue, 10 May 2022 16:00:05 +0000 Subject: [PATCH] doc: Fix mode iterator example The example missed the mode condition in the replacement text. 2022-05-10 Segher Boessenkool * doc/md.texi (Defining Mode Iterators): Correct example replacement text. --- gcc/doc/md.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi index 3b54435..463471f 100644 --- a/gcc/doc/md.texi +++ b/gcc/doc/md.texi @@ -11510,7 +11510,7 @@ This is exactly equivalent to: [(set (match_operand:DI 0 "register_operand" "=d") (minus:DI (match_operand:DI 1 "register_operand" "d") (match_operand:DI 2 "register_operand" "d")))] - "" + "TARGET_64BIT" "dsubu\t%0,%1,%2" [(set_attr "type" "arith") (set_attr "mode" "DI")]) -- 2.7.4