1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

Test case for r113248. Raar 8361341.

llvm-svn: 113249
This commit is contained in:
Stuart Hastings 2010-09-07 18:43:57 +00:00
parent 21e1fc67c3
commit f0d248515f

View File

@ -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; // CXHECK: 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;
}