From: Segher Boessenkool Date: Tue, 10 May 2022 16:00:05 +0000 (+0000) Subject: doc: Fix mode iterator example X-Git-Tag: basepoints/gcc-14~6933 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79b9d83947e137fbbd85ac6593df4e27fe37cef3;p=thirdparty%2Fgcc.git 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. --- diff --git a/gcc/doc/md.texi b/gcc/doc/md.texi index 3b544358bb5..463471f1568 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")])