mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186227 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llc  < %s -march=mipsel  | FileCheck %s -check-prefix=CHECK-EL
 | |
| ; RUN: llc  < %s -march=mips    | FileCheck %s -check-prefix=CHECK-EB
 | |
| %struct.S2 = type { %struct.S1, %struct.S1 }
 | |
| %struct.S1 = type { i8, i8 }
 | |
| %struct.S4 = type { [7 x i8] }
 | |
| 
 | |
| @s2 = common global %struct.S2 zeroinitializer, align 1
 | |
| @s4 = common global %struct.S4 zeroinitializer, align 1
 | |
| 
 | |
| define void @foo1() nounwind {
 | |
| entry:
 | |
| ; CHECK-EL-DAG: lbu ${{[0-9]+}}, 2($[[R0:[0-9]+]])
 | |
| ; CHECK-EL-DAG: lbu ${{[0-9]+}}, 3($[[R0]])
 | |
| ; CHECK-EL:     jalr
 | |
| ; CHECK-EL-DAG: lwl $[[R1:[0-9]+]], 3($[[R2:[0-9]+]])
 | |
| ; CHECK-EL-DAG: lwr $[[R1]], 0($[[R2]])
 | |
| 
 | |
| ; CHECK-EB-DAG: lbu ${{[0-9]+}}, 3($[[R0:[0-9]+]])
 | |
| ; CHECK-EB-DAG: lbu ${{[0-9]+}}, 2($[[R0]])
 | |
| ; CHECK-EB:     jalr
 | |
| ; CHECK-EB-DAG: lwl $[[R1:[0-9]+]], 0($[[R2:[0-9]+]])
 | |
| ; CHECK-EB-DAG: lwr $[[R1]], 3($[[R2]])
 | |
| 
 | |
|   tail call void @foo2(%struct.S1* byval getelementptr inbounds (%struct.S2* @s2, i32 0, i32 1)) nounwind
 | |
|   tail call void @foo4(%struct.S4* byval @s4) nounwind
 | |
|   ret void
 | |
| }
 | |
| 
 | |
| declare void @foo2(%struct.S1* byval)
 | |
| 
 | |
| declare void @foo4(%struct.S4* byval)
 |