* doc/invoke.texi: Document -std=c++17 and -std=gnu++17 and document
[official-gcc.git] / gcc / testsuite / g++.dg / warn / register-parm-1.C
blob8004ab0f8c810653d2449064bab855c066670443
1 // PR c++/60955
2 // { dg-options "-Wextra" }
4 unsigned int erroneous_warning(register int a) {        // { dg-warning "ISO C\\+\\+17 does not allow 'register' storage class specifier" "" { target c++17 } }
5     if ((a) & 0xff) return 1; else return 0;
7 unsigned int no_erroneous_warning(register int a) {     // { dg-warning "ISO C\\+\\+17 does not allow 'register' storage class specifier" "" { target c++17 } }
8     if (a & 0xff) return 1; else return 0;