mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	This test only cares about alignment, so don't test for other cruft. An upcoming llvm-gcc patch needs this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100584 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			16 lines
		
	
	
		
			262 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			262 B
		
	
	
	
		
			C
		
	
	
	
	
	
// RUN: %llvmgcc -m32 %s -S -o - | FileCheck %s
 | 
						|
// Set alignment on bitfield accesses.
 | 
						|
 | 
						|
struct S {
 | 
						|
  int a, b;
 | 
						|
  void *c;
 | 
						|
  unsigned d : 8;
 | 
						|
  unsigned e : 8;
 | 
						|
};
 | 
						|
 | 
						|
void f0(struct S *a) {
 | 
						|
// CHECK: load {{.*}}, align 4
 | 
						|
// CHECK: store {{.*}}, align 4
 | 
						|
  a->e = 0;
 | 
						|
}
 |