mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-03 14:21:30 +00:00 
			
		
		
		
	git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126191 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			17 lines
		
	
	
		
			375 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			375 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
; RUN: llc < %s -mtriple=arm-apple-darwin -relocation-model=pic | FileCheck %s
 | 
						|
; rdar://9027648
 | 
						|
 | 
						|
@A = available_externally hidden constant i32 1
 | 
						|
@B = external hidden constant i32
 | 
						|
 | 
						|
define i32 @t1() {
 | 
						|
  %tmp = load i32* @A
 | 
						|
  store i32 %tmp, i32* @B
 | 
						|
  ret i32 %tmp
 | 
						|
}
 | 
						|
 | 
						|
; CHECK:      L_A$non_lazy_ptr:
 | 
						|
; CHECK-NEXT: .long _A
 | 
						|
; CHECK:      L_B$non_lazy_ptr:
 | 
						|
; CHECK-NEXT: .long _B
 |