aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/register-parm-1.C
blob: 44232d3cf41ad746e1d99ae97487cad545367c5c (plain)
1
2
3
4
5
6
7
8
9
// PR c++/60955
// { dg-options "-Wextra" }

unsigned int erroneous_warning(register int a) {
    if ((a) & 0xff) return 1; else return 0;
}
unsigned int no_erroneous_warning(register int a) {
    if (a & 0xff) return 1; else return 0;
}