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
		
			
				
	
	
		
			23 lines
		
	
	
		
			416 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			416 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
; RUN: opt < %s -verify -S | llvm-as -disable-output
 | 
						|
 | 
						|
define {i32, i8} @foo(i32 %p) {
 | 
						|
  ret i32 1, i8 2
 | 
						|
}
 | 
						|
 | 
						|
define i8 @f2(i32 %p) {
 | 
						|
   %c = call {i32, i8} @foo(i32 %p)
 | 
						|
   %d = getresult {i32, i8} %c, 1
 | 
						|
   %e = add i8 %d, 1
 | 
						|
   ret i8 %e
 | 
						|
}
 | 
						|
 | 
						|
define i32 @f3(i32 %p) {
 | 
						|
   %c = invoke {i32, i8} @foo(i32 %p)
 | 
						|
         to label %L unwind label %L2
 | 
						|
   L: 
 | 
						|
   %d = getresult {i32, i8} %c, 0
 | 
						|
   ret i32 %d
 | 
						|
   L2:
 | 
						|
   ret i32 0
 | 
						|
}
 |