mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113281 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			21 lines
		
	
	
		
			372 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			372 B
		
	
	
	
		
			C
		
	
	
	
	
	
// RUN: not %llvmgcc_only -c %s -o /dev/null |& FileCheck %s
 | 
						|
// PR 1603
 | 
						|
void func()
 | 
						|
{
 | 
						|
   const int *arr;
 | 
						|
   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;
 | 
						|
}
 |