]> granicus.if.org Git - clang/commitdiff
Dependent Address Space Support Test Fix
authorAndrew Gozillon <andrew.gozillon@uws.ac.uk>
Mon, 2 Oct 2017 13:32:59 +0000 (13:32 +0000)
committerAndrew Gozillon <andrew.gozillon@uws.ac.uk>
Mon, 2 Oct 2017 13:32:59 +0000 (13:32 +0000)
Modifying a non-type template integer arguement that is causing errors
in some builds as it's too large for 32-bit longs. This hopefully (and
seems to when testing) should fix all of the build bot errors relating
to this test. I also modified the name of the function call to be more
apt.

Differential Revision: https://reviews.llvm.org/D33666

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@314668 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaTemplate/address_space-dependent.cpp

index a47f2b2f90f264f9413745b19561e1f37bfa4a41..e3243bc3ebd4e4e58d25c093797ff2fb93d6f908 100644 (file)
@@ -42,7 +42,7 @@ void neg() {
 }
 
 template <long int I>
-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 @@ int main() {
   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;