diff options
Diffstat (limited to 'test/FrontendC/2007-10-01-BuildArrayRef.c')
-rw-r--r-- | test/FrontendC/2007-10-01-BuildArrayRef.c | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/test/FrontendC/2007-10-01-BuildArrayRef.c b/test/FrontendC/2007-10-01-BuildArrayRef.c index e903755..e87a5b6 100644 --- a/test/FrontendC/2007-10-01-BuildArrayRef.c +++ b/test/FrontendC/2007-10-01-BuildArrayRef.c @@ -1,8 +1,20 @@ -// RUN: not %llvmgcc -S %s -o /dev/null |& grep "error: assignment of read-only location" +// RUN: not %llvmgcc_only -c %s -o /dev/null |& FileCheck %s // PR 1603 -int func() +void func() { const int *arr; - arr[0] = 1; + arr[0] = 1; // CHECK: error: assignment of read-only location } +struct foo { + int bar; +}; +struct foo sfoo = { 0 }; + +int func2() +{ + const struct foo *fp; + fp = &sfoo; + fp[0].bar = 1; // CHECK: error: assignment of read-only member 'bar' + return sfoo.bar; +} |