public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug debug/100255] New: Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register]
@ 2021-04-25 20:29 jbglaw@lug-owl.de
  2021-04-25 20:42 ` [Bug debug/100255] " jakub at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: jbglaw@lug-owl.de @ 2021-04-25 20:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100255

            Bug ID: 100255
           Summary: Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20:
                    error: ISO C++17 does not allow 'register' storage
                    class specifier [-Werror=register]
           Product: gcc
           Version: unknown
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jbglaw@lug-owl.de
  Target Milestone: ---

I'm revamping my testing efforts, building cross compilers based on targets
listed in ./contrib/config-list.mk.

With .../configure --target=ia64-hp-vms --enable-werror-always
--enable-languages=all --prefix=/tmp/gcc-ia64-hp-vms (using g++ (Debian
20210320-1) 11.0.1 20210320 (experimental) [master revision
3279a9a5a9a:6526c452d22:5f256a70a05fcfc5a1caf56678ceb12b4f87f781] as the host's
compiler), build breaks (as of ed16241c6db23013d70b792a64f29080ad48a414) with
this (cf. http://toolchain.lug-owl.de:8080/jobs/gcc-ia64-hp-vms/8):

make all-gcc
[...]
[all 2021-04-25 20:52:34.441260] /usr/lib/gcc-snapshot/bin/g++  -fno-PIE -c  
-g -O2 -DIN_GCC  -DCROSS_DIRECTORY_STRUCTURE   -fno-exceptions -fno-rtti
-fasynchronous-unwind-tables -W -Wall -Wno-narrowing -Wwrite-strings
-Wcast-qual -Wno-error=format-diag -Wmissing-format-attribute
-Woverloaded-virtual -pedantic -Wno-long-long -Wno-variadic-macros
-Wno-overlength-strings -Werror -fno-common  -DHAVE_CONFIG_H -I. -I.
-I../.././gcc -I../.././gcc/. -I../.././gcc/../include
-I../.././gcc/../libcpp/include -I../.././gcc/../libcody 
-I../.././gcc/../libdecnumber -I../.././gcc/../libdecnumber/dpd
-I../libdecnumber -I../.././gcc/../libbacktrace   -o vmsdbgout.o -MT
vmsdbgout.o -MMD -MP -MF ./.deps/vmsdbgout.TPo ../.././gcc/vmsdbgout.c
[all 2021-04-25 20:52:38.329848] ../.././gcc/vmsdbgout.c: In function 'int
write_debug_string(const char*, const char*, int)':
[all 2021-04-25 20:52:38.330047] ../.././gcc/vmsdbgout.c:368:20: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.330139]   368 |       register int slen = strlen (P); 
         \
[all 2021-04-25 20:52:38.330220]       |                    ^~~~
[all 2021-04-25 20:52:38.330296] ../.././gcc/vmsdbgout.c:549:7: note: in
expansion of macro 'ASM_OUTPUT_DEBUG_STRING'
[all 2021-04-25 20:52:38.330371]   549 |       ASM_OUTPUT_DEBUG_STRING
(asm_out_file, string);
[all 2021-04-25 20:52:38.330447]       |       ^~~~~~~~~~~~~~~~~~~~~~~
[all 2021-04-25 20:52:38.331123] ../.././gcc/vmsdbgout.c:369:28: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.331292]   369 |       register const char *p = (P);   
         \
[all 2021-04-25 20:52:38.331370]       |                            ^
[all 2021-04-25 20:52:38.331439] ../.././gcc/vmsdbgout.c:549:7: note: in
expansion of macro 'ASM_OUTPUT_DEBUG_STRING'
[all 2021-04-25 20:52:38.331505]   549 |       ASM_OUTPUT_DEBUG_STRING
(asm_out_file, string);
[all 2021-04-25 20:52:38.331577]       |       ^~~~~~~~~~~~~~~~~~~~~~~
[all 2021-04-25 20:52:38.331953] ../.././gcc/vmsdbgout.c:370:20: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.332102]   370 |       register int i;                 
         \
[all 2021-04-25 20:52:38.332181]       |                    ^
[all 2021-04-25 20:52:38.332287] ../.././gcc/vmsdbgout.c:549:7: note: in
expansion of macro 'ASM_OUTPUT_DEBUG_STRING'
[all 2021-04-25 20:52:38.332364]   549 |       ASM_OUTPUT_DEBUG_STRING
(asm_out_file, string);
[all 2021-04-25 20:52:38.332437]       |       ^~~~~~~~~~~~~~~~~~~~~~~
[all 2021-04-25 20:52:38.333260] ../.././gcc/vmsdbgout.c:374:24: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.333448]   374 |           register int c = p[i];      
         \
[all 2021-04-25 20:52:38.333528]       |                        ^
[all 2021-04-25 20:52:38.333600] ../.././gcc/vmsdbgout.c:549:7: note: in
expansion of macro 'ASM_OUTPUT_DEBUG_STRING'
[all 2021-04-25 20:52:38.333668]   549 |       ASM_OUTPUT_DEBUG_STRING
(asm_out_file, string);
[all 2021-04-25 20:52:38.333734]       |       ^~~~~~~~~~~~~~~~~~~~~~~
[all 2021-04-25 20:52:38.386301] ../.././gcc/vmsdbgout.c: At global scope:
[all 2021-04-25 20:52:38.386507] ../.././gcc/vmsdbgout.c:1232:42: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.386595]  1232 | vmsdbgout_begin_block (register
unsigned line, register unsigned blocknum)
[all 2021-04-25 20:52:38.386663]       |                                       
  ^~~~
[all 2021-04-25 20:52:38.387009] ../.././gcc/vmsdbgout.c:1232:66: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.387164]  1232 | vmsdbgout_begin_block (register
unsigned line, register unsigned blocknum)
[all 2021-04-25 20:52:38.387248]       |                                       
                          ^~~~~~~~
[all 2021-04-25 20:52:38.388728] ../.././gcc/vmsdbgout.c:1245:40: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.388939]  1245 | vmsdbgout_end_block (register unsigned
line, register unsigned blocknum)
[all 2021-04-25 20:52:38.389046]       |                                       
^~~~
[all 2021-04-25 20:52:38.389321] ../.././gcc/vmsdbgout.c:1245:64: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.389477]  1245 | vmsdbgout_end_block (register unsigned
line, register unsigned blocknum)
[all 2021-04-25 20:52:38.389570]       |                                       
                        ^~~~~~~~
[all 2021-04-25 20:52:38.393827] ../.././gcc/vmsdbgout.c: In function 'unsigned
int lookup_filename(const char*)':
[all 2021-04-25 20:52:38.394039] ../.././gcc/vmsdbgout.c:1318:18: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.394139]  1318 |   register char *fn;
[all 2021-04-25 20:52:38.394232]       |                  ^~
[all 2021-04-25 20:52:38.394511] ../.././gcc/vmsdbgout.c:1319:21: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.394649]  1319 |   register unsigned i;
[all 2021-04-25 20:52:38.394732]       |                     ^
[all 2021-04-25 20:52:38.428067] ../.././gcc/vmsdbgout.c: At global scope:
[all 2021-04-25 20:52:38.428347] ../.././gcc/vmsdbgout.c:1408:42: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.428445]  1408 | vmsdbgout_source_line (register
unsigned line, unsigned int column,
[all 2021-04-25 20:52:38.428527]       |                                       
  ^~~~
[all 2021-04-25 20:52:38.428917] ../.././gcc/vmsdbgout.c:1409:45: error: ISO
C++17 does not allow 'register' storage class specifier [-Werror=register]
[all 2021-04-25 20:52:38.429064]  1409 |                        register const
char *filename,
[all 2021-04-25 20:52:38.429138]       |                                       
     ^~~~~~~~
[all 2021-04-25 20:52:42.562373] cc1plus: all warnings being treated as errors
[all 2021-04-25 20:52:42.600013] make[1]: *** [Makefile:1143: vmsdbgout.o]
Error 1
[all 2021-04-25 20:52:42.815235] make[1]: Leaving directory
'/var/lib/laminar/run/gcc-ia64-hp-vms/8/gcc/host-x86_64-pc-linux-gnu/gcc'
[all 2021-04-25 20:52:43.045608] make: *** [Makefile:4427: all-gcc] Error 2

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug debug/100255] Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register]
  2021-04-25 20:29 [Bug debug/100255] New: Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register] jbglaw@lug-owl.de
@ 2021-04-25 20:42 ` jakub at gcc dot gnu.org
  2021-04-26  8:00 ` [Bug target/100255] " cvs-commit at gcc dot gnu.org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-04-25 20:42 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100255

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
                 CC|                            |jakub at gcc dot gnu.org
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2021-04-25
           Assignee|unassigned at gcc dot gnu.org      |jakub at gcc dot gnu.org

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug target/100255] Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register]
  2021-04-25 20:29 [Bug debug/100255] New: Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register] jbglaw@lug-owl.de
  2021-04-25 20:42 ` [Bug debug/100255] " jakub at gcc dot gnu.org
@ 2021-04-26  8:00 ` cvs-commit at gcc dot gnu.org
  2021-04-26  8:02 ` jakub at gcc dot gnu.org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-04-26  8:00 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100255

--- Comment #1 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jakub Jelinek <jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:297bfacdb448c0d29b8dfac2818350b90902bc75

commit r12-112-g297bfacdb448c0d29b8dfac2818350b90902bc75
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Mon Apr 26 09:59:15 2021 +0200

    vmsdbgout: Remove useless register keywords

    register keyword was removed in C++17, and in vmsdbgout.c it served no
    useful purpose.

    2021-04-26  Jakub Jelinek  <jakub@redhat.com>

            PR debug/100255
            * vmsdbgout.c (ASM_OUTPUT_DEBUG_STRING, vmsdbgout_begin_block,
            vmsdbgout_end_block, lookup_filename, vmsdbgout_source_line):
Remove
            register keywords.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug target/100255] Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register]
  2021-04-25 20:29 [Bug debug/100255] New: Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register] jbglaw@lug-owl.de
  2021-04-25 20:42 ` [Bug debug/100255] " jakub at gcc dot gnu.org
  2021-04-26  8:00 ` [Bug target/100255] " cvs-commit at gcc dot gnu.org
@ 2021-04-26  8:02 ` jakub at gcc dot gnu.org
  2021-04-27 13:32 ` cvs-commit at gcc dot gnu.org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-04-26  8:02 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100255

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|ASSIGNED                    |RESOLVED

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Fixed.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug target/100255] Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register]
  2021-04-25 20:29 [Bug debug/100255] New: Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register] jbglaw@lug-owl.de
                   ` (2 preceding siblings ...)
  2021-04-26  8:02 ` jakub at gcc dot gnu.org
@ 2021-04-27 13:32 ` cvs-commit at gcc dot gnu.org
  2021-05-04 12:08 ` cvs-commit at gcc dot gnu.org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-04-27 13:32 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100255

--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-11 branch has been updated by Jakub Jelinek
<jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:b363daf1321bec59b96908ddfb674312732173ad

commit r11-8298-gb363daf1321bec59b96908ddfb674312732173ad
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Mon Apr 26 09:59:15 2021 +0200

    vmsdbgout: Remove useless register keywords

    register keyword was removed in C++17, and in vmsdbgout.c it served no
    useful purpose.

    2021-04-26  Jakub Jelinek  <jakub@redhat.com>

            PR debug/100255
            * vmsdbgout.c (ASM_OUTPUT_DEBUG_STRING, vmsdbgout_begin_block,
            vmsdbgout_end_block, lookup_filename, vmsdbgout_source_line):
Remove
            register keywords.

    (cherry picked from commit 297bfacdb448c0d29b8dfac2818350b90902bc75)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug target/100255] Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register]
  2021-04-25 20:29 [Bug debug/100255] New: Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register] jbglaw@lug-owl.de
                   ` (3 preceding siblings ...)
  2021-04-27 13:32 ` cvs-commit at gcc dot gnu.org
@ 2021-05-04 12:08 ` cvs-commit at gcc dot gnu.org
  2021-05-04 12:21 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-05-04 12:08 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100255

--- Comment #4 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-10 branch has been updated by Jakub Jelinek
<jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:14786c8bcec1b90901673f79a6c3ca449815fd9e

commit r10-9792-g14786c8bcec1b90901673f79a6c3ca449815fd9e
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Mon Apr 26 09:59:15 2021 +0200

    vmsdbgout: Remove useless register keywords

    register keyword was removed in C++17, and in vmsdbgout.c it served no
    useful purpose.

    2021-04-26  Jakub Jelinek  <jakub@redhat.com>

            PR debug/100255
            * vmsdbgout.c (ASM_OUTPUT_DEBUG_STRING, vmsdbgout_begin_block,
            vmsdbgout_end_block, lookup_filename, vmsdbgout_source_line):
Remove
            register keywords.

    (cherry picked from commit 297bfacdb448c0d29b8dfac2818350b90902bc75)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug target/100255] Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register]
  2021-04-25 20:29 [Bug debug/100255] New: Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register] jbglaw@lug-owl.de
                   ` (4 preceding siblings ...)
  2021-05-04 12:08 ` cvs-commit at gcc dot gnu.org
@ 2021-05-04 12:21 ` cvs-commit at gcc dot gnu.org
  2021-05-04 12:26 ` cvs-commit at gcc dot gnu.org
  2021-09-11 14:29 ` pinskia at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-05-04 12:21 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100255

--- Comment #5 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-9 branch has been updated by Jakub Jelinek
<jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:4f89f7aef6a89f05bca79713eba4c05b7dacb348

commit r9-9504-g4f89f7aef6a89f05bca79713eba4c05b7dacb348
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Mon Apr 26 09:59:15 2021 +0200

    vmsdbgout: Remove useless register keywords

    register keyword was removed in C++17, and in vmsdbgout.c it served no
    useful purpose.

    2021-04-26  Jakub Jelinek  <jakub@redhat.com>

            PR debug/100255
            * vmsdbgout.c (ASM_OUTPUT_DEBUG_STRING, vmsdbgout_begin_block,
            vmsdbgout_end_block, lookup_filename, vmsdbgout_source_line):
Remove
            register keywords.

    (cherry picked from commit 297bfacdb448c0d29b8dfac2818350b90902bc75)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug target/100255] Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register]
  2021-04-25 20:29 [Bug debug/100255] New: Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register] jbglaw@lug-owl.de
                   ` (5 preceding siblings ...)
  2021-05-04 12:21 ` cvs-commit at gcc dot gnu.org
@ 2021-05-04 12:26 ` cvs-commit at gcc dot gnu.org
  2021-09-11 14:29 ` pinskia at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-05-04 12:26 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100255

--- Comment #6 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-8 branch has been updated by Jakub Jelinek
<jakub@gcc.gnu.org>:

https://gcc.gnu.org/g:2b8cc983060099f2bfbb21d42cf1aad4d55d2348

commit r8-10945-g2b8cc983060099f2bfbb21d42cf1aad4d55d2348
Author: Jakub Jelinek <jakub@redhat.com>
Date:   Mon Apr 26 09:59:15 2021 +0200

    vmsdbgout: Remove useless register keywords

    register keyword was removed in C++17, and in vmsdbgout.c it served no
    useful purpose.

    2021-04-26  Jakub Jelinek  <jakub@redhat.com>

            PR debug/100255
            * vmsdbgout.c (ASM_OUTPUT_DEBUG_STRING, vmsdbgout_begin_block,
            vmsdbgout_end_block, lookup_filename, vmsdbgout_source_line):
Remove
            register keywords.

    (cherry picked from commit 297bfacdb448c0d29b8dfac2818350b90902bc75)

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug target/100255] Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register]
  2021-04-25 20:29 [Bug debug/100255] New: Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register] jbglaw@lug-owl.de
                   ` (6 preceding siblings ...)
  2021-05-04 12:26 ` cvs-commit at gcc dot gnu.org
@ 2021-09-11 14:29 ` pinskia at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-09-11 14:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100255

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |8.5

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2021-09-11 14:29 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-25 20:29 [Bug debug/100255] New: Crosscompiler to ia64-hp-vms: vmsdbgout.c:368:20: error: ISO C++17 does not allow 'register' storage class specifier [-Werror=register] jbglaw@lug-owl.de
2021-04-25 20:42 ` [Bug debug/100255] " jakub at gcc dot gnu.org
2021-04-26  8:00 ` [Bug target/100255] " cvs-commit at gcc dot gnu.org
2021-04-26  8:02 ` jakub at gcc dot gnu.org
2021-04-27 13:32 ` cvs-commit at gcc dot gnu.org
2021-05-04 12:08 ` cvs-commit at gcc dot gnu.org
2021-05-04 12:21 ` cvs-commit at gcc dot gnu.org
2021-05-04 12:26 ` cvs-commit at gcc dot gnu.org
2021-09-11 14:29 ` pinskia at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).