mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	The MicroBlaze is a highly configurable 32-bit soft-microprocessor for use on Xilinx FPGAs. For more information see: http://www.xilinx.com/tools/microblaze.htm http://en.wikipedia.org/wiki/MicroBlaze The current LLVM MicroBlaze backend generates assembly which can be compiled using the an appropriate binutils assembler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96969 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			16 lines
		
	
	
		
			399 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			399 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
; Ensure that the select instruction is supported and is lowered to 
 | 
						|
; some sort of branch instruction.
 | 
						|
;
 | 
						|
; RUN: llc < %s -march=mblaze | FileCheck %s
 | 
						|
 | 
						|
define i32 @testsel(i32 %a, i32 %b)
 | 
						|
{
 | 
						|
    ; CHECK:        testsel:
 | 
						|
    %tmp.1 = icmp eq i32 %a, %b
 | 
						|
    ; CHECK:        cmp
 | 
						|
    %tmp.2 = select i1 %tmp.1, i32 %a, i32 %b
 | 
						|
    ; CHECK:        {{bne|beq}}
 | 
						|
    ret i32 %tmp.2
 | 
						|
    ; CHECK:        rtsd
 | 
						|
}
 |