mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-31 08:16:47 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17568 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			27 lines
		
	
	
		
			680 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			680 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
 | |
| ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
 | |
| ; RUN: diff %t1.ll %t2.ll
 | |
| 
 | |
| 
 | |
| %MyVar     = uninitialized global int
 | |
| %MyIntList = uninitialized global { \2 *, int }
 | |
|              external global int      ; int*:0
 | |
| 
 | |
| %AConst    = constant int 123
 | |
| 
 | |
| %AString   = constant [4 x ubyte] c"test"
 | |
| 
 | |
| %ZeroInit  = global { [100 x int ], [40 x float ] } { [100 x int] zeroinitializer,
 | |
|                                                       [40  x float] zeroinitializer }
 | |
| 
 | |
| implementation
 | |
| 
 | |
| int "foo"(int %blah)
 | |
| begin
 | |
| 	store int 5, int *%MyVar
 | |
| 	%idx = getelementptr { \2 *, int } * %MyIntList, long 0, ubyte 1
 | |
|   	store int 12, int* %idx
 | |
|   	ret int %blah
 | |
| end
 | |
| 
 |