mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	not built with 64 bit support. Since this test passes without -m64 on x86-32-linux, just remove the -m64. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57462 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			19 lines
		
	
	
		
			338 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			338 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* RUN: %llvmgcc %s -S -o - -emit-llvm -O0 | grep zeroinitializer | count 1
 | 
						|
 | 
						|
The FE must not generate padding here between array elements.  PR 2533. */
 | 
						|
 | 
						|
typedef struct {
 | 
						|
 const char *name;
 | 
						|
 int flags;
 | 
						|
 union {
 | 
						|
   int x;
 | 
						|
 } u;
 | 
						|
} OptionDef;
 | 
						|
 | 
						|
const OptionDef options[] = {
 | 
						|
 /* main options */
 | 
						|
 { "a", 0, {3} },
 | 
						|
 { "b", 0, {4} },
 | 
						|
 { 0, },
 | 
						|
};
 |