mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81290 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			11 lines
		
	
	
		
			221 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			221 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
; RUN: llc < %s -march=x86
 | 
						|
 | 
						|
define i1 @foo(i64 %a)
 | 
						|
{
 | 
						|
  %t = bitcast i64 %a to <2 x float>
 | 
						|
  %r = extractelement <2 x float> %t, i32 0
 | 
						|
  %s = extractelement <2 x float> %t, i32 1
 | 
						|
  %b = fcmp uno float %r, %s
 | 
						|
  ret i1 %b
 | 
						|
}
 |