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@32115 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			21 lines
		
	
	
		
			550 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			550 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg | llvm-dis | not grep call
 | |
| 
 | |
| declare void %bar()
 | |
| 
 | |
| void %test(int %X, int %Y) {
 | |
| entry:
 | |
|         %tmp.2 = setlt int %X, %Y               ; <bool> [#uses=2]
 | |
|         br bool %tmp.2, label %shortcirc_next, label %UnifiedReturnBlock
 | |
| 
 | |
| shortcirc_next:         ; preds = %entry
 | |
|         br bool %tmp.2, label %UnifiedReturnBlock, label %then
 | |
| 
 | |
| then:           ; preds = %shortcirc_next
 | |
|         call void %bar( )
 | |
|         ret void
 | |
| 
 | |
| UnifiedReturnBlock:             ; preds = %entry, %shortcirc_next
 | |
| 	ret void
 | |
| }
 | |
| 
 |