diff options
Diffstat (limited to 'test/Sema/array-bounds-ptr-arith.c')
-rw-r--r-- | test/Sema/array-bounds-ptr-arith.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Sema/array-bounds-ptr-arith.c b/test/Sema/array-bounds-ptr-arith.c index c0e0d0e..022335b 100644 --- a/test/Sema/array-bounds-ptr-arith.c +++ b/test/Sema/array-bounds-ptr-arith.c @@ -12,3 +12,10 @@ void* broken (struct ext2_super_block *es,int a) { return (void *)es->s_uuid + 80; // expected-warning {{refers past the end of the array}} } + +// Test case reduced from PR11594 +struct S { int n; }; +void pr11594(struct S *s) { + int a[10]; + int *p = a - s->n; +} |