mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81537 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			25 lines
		
	
	
		
			496 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			496 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
; RUN: opt < %s -instcombine -S | grep {ret i32 %A}
 | 
						|
; RUN: opt < %s -die -S | not grep call.*llvm.stacksave
 | 
						|
 | 
						|
define i32 @test(i32 %A) {
 | 
						|
	%X = or i1 false, false		
 | 
						|
	br i1 %X, label %T, label %C
 | 
						|
 | 
						|
T:		; preds = %0
 | 
						|
	%B = add i32 %A, 1	
 | 
						|
	br label %C
 | 
						|
 | 
						|
C:		; preds = %T, %0
 | 
						|
	%C.upgrd.1 = phi i32 [ %B, %T ], [ %A, %0 ]
 | 
						|
	ret i32 %C.upgrd.1
 | 
						|
}
 | 
						|
 | 
						|
define i32* @test2(i32 %width) {
 | 
						|
	%tmp = call i8* @llvm.stacksave( )
 | 
						|
        %tmp14 = alloca i32, i32 %width
 | 
						|
	ret i32* %tmp14
 | 
						|
} 
 | 
						|
 | 
						|
declare i8* @llvm.stacksave()
 | 
						|
 |