mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	The intrinsic calls are dropped, but the annotated value is propagated. Fixes PR 15253 Original patch by Zeng Bin! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182387 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			16 lines
		
	
	
		
			473 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			473 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
; RUN: llc < %s
 | 
						|
 | 
						|
; PR15253
 | 
						|
 | 
						|
@.str = private unnamed_addr constant [4 x i8] c"sth\00", section "llvm.metadata"
 | 
						|
@.str1 = private unnamed_addr constant [4 x i8] c"t.c\00", section "llvm.metadata"
 | 
						|
 | 
						|
 | 
						|
define i32 @foo(i32 %a) {
 | 
						|
entry:
 | 
						|
  %0 = call i32 @llvm.annotation.i32(i32 %a, i8* getelementptr inbounds ([4 x i8]* @.str, i32 0, i32 0), i8* getelementptr inbounds ([4 x i8]* @.str1, i32 0, i32 0), i32 2)
 | 
						|
  ret i32 %0
 | 
						|
}
 | 
						|
 | 
						|
declare i32 @llvm.annotation.i32(i32, i8*, i8*, i32) #1
 |