Index: cfe/trunk/test/SemaTemplate/address_space-dependent.cpp =================================================================== --- cfe/trunk/test/SemaTemplate/address_space-dependent.cpp +++ cfe/trunk/test/SemaTemplate/address_space-dependent.cpp @@ -42,7 +42,7 @@ } template -void toBig() { +void tooBig() { __attribute__((address_space(I))) int *bounds; // expected-error {{address space is larger than the maximum supported (8388599)}} } @@ -102,7 +102,7 @@ HasASTemplateFields<1> HASTF; neg<-1>(); // expected-note {{in instantiation of function template specialization 'neg<-1>' requested here}} correct<0x7FFFF7>(); - toBig<4294967500>(); // expected-note {{in instantiation of function template specialization 'toBig<4294967500>' requested here}} + tooBig<8388650>(); // expected-note {{in instantiation of function template specialization 'tooBig<8388650>' requested here}} __attribute__((address_space(1))) char *x; __attribute__((address_space(2))) char *y;