forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			327 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			327 B
		
	
	
	
		
			C
		
	
	
	
/* RUN: %llvmgcc %s -S -o - -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, },
 | 
						|
};
 |