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@36076 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			16 lines
		
	
	
		
			384 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			384 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep add | grep lsl
 | |
| ; RUN: llvm-upgrade < %s | llvm-as | llc -march=arm | grep bic | grep asr
 | |
| 
 | |
| int %test1(int %X, int %Y, ubyte %sh) {
 | |
|   %A = shl int %Y, ubyte %sh
 | |
|   %B = add int %X, %A
 | |
|   ret int %B
 | |
| }
 | |
| 
 | |
| int %test2(int %X, int %Y, ubyte %sh) {
 | |
|   %A = shr int %Y, ubyte %sh
 | |
|   %B = xor int %A, -1
 | |
|   %C = and int %X, %B
 | |
|   ret int %C
 | |
| }
 |