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@81293 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			43 lines
		
	
	
		
			946 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			946 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llc < %s -march=arm | \
 | |
| ; RUN:   grep {mov r0, #0} | count 1
 | |
| ; RUN: llc < %s -march=arm | \
 | |
| ; RUN:   grep {mov r0, #255$} | count 1
 | |
| ; RUN: llc < %s -march=arm -asm-verbose | \
 | |
| ; RUN:   grep {mov r0.*256} | count 1
 | |
| ; RUN: llc < %s -march=arm -asm-verbose | grep {orr.*256} | count 1
 | |
| ; RUN: llc < %s -march=arm -asm-verbose | grep {mov r0, .*-1073741761} | count 1
 | |
| ; RUN: llc < %s -march=arm -asm-verbose | grep {mov r0, .*1008} | count 1
 | |
| ; RUN: llc < %s -march=arm | grep {cmp r0, #1, 16} | count 1
 | |
| 
 | |
| define i32 @f1() {
 | |
|         ret i32 0
 | |
| }
 | |
| 
 | |
| define i32 @f2() {
 | |
|         ret i32 255
 | |
| }
 | |
| 
 | |
| define i32 @f3() {
 | |
|         ret i32 256
 | |
| }
 | |
| 
 | |
| define i32 @f4() {
 | |
|         ret i32 257
 | |
| }
 | |
| 
 | |
| define i32 @f5() {
 | |
|         ret i32 -1073741761
 | |
| }
 | |
| 
 | |
| define i32 @f6() {
 | |
|         ret i32 1008
 | |
| }
 | |
| 
 | |
| define void @f7(i32 %a) {
 | |
|         %b = icmp ugt i32 %a, 65536             ; <i1> [#uses=1]
 | |
|         br i1 %b, label %r, label %r
 | |
| 
 | |
| r:              ; preds = %0, %0
 | |
|         ret void
 | |
| }
 |