]> sourceware.org Git - newlib-cygwin.git/commitdiff
Fix compile time warning messages building with gcc v6.1.1
authorNick Clifton <nickc@redhat.com>
Mon, 13 Jun 2016 09:49:26 +0000 (10:49 +0100)
committerMike Frysinger <vapier@gentoo.org>
Thu, 11 Nov 2021 01:14:00 +0000 (20:14 -0500)
etc * texi2pod.pl: Escape curly braces, whilst searching for keyword
strong.

gas * config/tc-arm.c: For non-ELF based targets skip ARM feature sets
that are not supported.

* config/tc-arc.c (md_apply_fix): Avoid left shifting a signed
constant.
* config/tc-cr16.c (check_range): Likewise.
* config/tc-nios2.c (nios2_check_overflow): Likewise.

etc/ChangeLog
etc/texi2pod.pl

index c1103382652a8fbe373773f58b6e831d131a4dd7..1864bf0c89f409b8856271915d4f3385e930a1ef 100644 (file)
@@ -1,3 +1,8 @@
+2016-06-13  Nick Clifton  <nickc@redhat.com>
+
+       * texi2pod.pl: Escape curly braces, whilst searching for keyword
+       strong.
+
 2016-03-18  Nick Clifton  <nickc@redhat.com>
 
        * texi2pod.pl: Add TARGET to the list of recognised man page
index dd3e181db34c45bd9c937c8139cb582436e80459..0f465b7c768cb0213a617d47d4151c2a20e05229 100644 (file)
@@ -311,7 +311,7 @@ while(<$inf>) {
        @columns = ();
        for $column (split (/\s*\@tab\s*/, $1)) {
            # @strong{...} is used a @headitem work-alike
-           $column =~ s/^\@strong{(.*)}$/$1/;
+           $column =~ s/^\@strong\{(.*)\}$/$1/;
            push @columns, $column;
        }
        $_ = "\n=item ".join (" : ", @columns)."\n";
This page took 0.032155 seconds and 5 git commands to generate.