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@83828 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			10 lines
		
	
	
		
			214 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			214 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: opt < %s -instcombine -S | FileCheck %s
 | |
| 
 | |
| define i32 @testAdd(i32 %X, i32 %Y) {
 | |
| 	%tmp = add i32 %X, %Y
 | |
| ; CHECK: %tmp = add i32 %X, %Y
 | |
| 	%tmp.l = bitcast i32 %tmp to i32
 | |
| 	ret i32 %tmp.l
 | |
| ; CHECK: ret i32 %tmp
 | |
| }
 |