summaryrefslogtreecommitdiffstats
path: root/test/Sema/array-size-64.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/array-size-64.c')
-rw-r--r--test/Sema/array-size-64.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/Sema/array-size-64.c b/test/Sema/array-size-64.c
index f22e8e7..0e094bf 100644
--- a/test/Sema/array-size-64.c
+++ b/test/Sema/array-size-64.c
@@ -2,6 +2,11 @@
void f() {
int a[2147483647U][2147483647U]; // expected-error{{array is too large}}
- int b[1073741825U - 1U][2147483647U];
- int c[18446744073709551615U/sizeof(int)/2];
+ int b[1073741825U - 1U][2147483647U]; // expected-error{{array is too large}}
}
+
+void pr8256 () {
+ typedef char a[1LL<<61]; // expected-error {{array is too large}}
+ typedef char b[(long long)sizeof(a)-1];
+}
+
OpenPOWER on IntegriCloud