On 28/05/18 11:22, Jakub Jelinek wrote:
Hi! I've noticed ../../gcc/doc/invoke.texi:15971: warning: @itemx should not begin @table errors, fixed thusly, committed as obvious to trunk. Probably it needs backporting too.
Thanks Jakub. That is caused by my oversight in r260362 when I removed the first @item in that list. So it wouldn't need fixing on the branches. Thanks for fixing this. Kyrill
2018-05-28 Jakub Jelinek <ja...@redhat.com> * doc/invoke.texi (ARM Options): Use @item instead of @itemx for armv5te. --- gcc/doc/invoke.texi.jj 2018-05-25 14:34:35.589376306 +0200 +++ gcc/doc/invoke.texi 2018-05-28 12:11:59.028679696 +0200 @@ -15968,7 +15968,7 @@ The table below lists the supported exte Architectures not mentioned do not support any extensions. @table @samp -@itemx armv5te +@item armv5te @itemx armv6 @itemx armv6j @itemx armv6k Jakub