mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	This will make it easier to turn on struct-path aware TBAA since the metadata format will change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180796 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			22 lines
		
	
	
		
			494 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			494 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: llc < %s -march=mipsel | FileCheck %s
 | |
| 
 | |
| @g1 = external global i32
 | |
| 
 | |
| define i32 @foo0(i32 %s) nounwind readonly {
 | |
| entry:
 | |
| ; CHECK:     movn ${{[0-9]+}}, $zero
 | |
|   %tobool = icmp ne i32 %s, 0
 | |
|   %0 = load i32* @g1, align 4
 | |
|   %cond = select i1 %tobool, i32 0, i32 %0
 | |
|   ret i32 %cond
 | |
| }
 | |
| 
 | |
| define i32 @foo1(i32 %s) nounwind readonly {
 | |
| entry:
 | |
| ; CHECK:     movz ${{[0-9]+}}, $zero
 | |
|   %tobool = icmp ne i32 %s, 0
 | |
|   %0 = load i32* @g1, align 4
 | |
|   %cond = select i1 %tobool, i32 %0, i32 0
 | |
|   ret i32 %cond
 | |
| }
 |