mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	versions of Bash. In addition, I can back out the change to the lit built-in shell test runner to support this. This should fix the majority of fallout on Darwin, but I suspect there will be a few straggling issues. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159544 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			13 lines
		
	
	
		
			285 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			285 B
		
	
	
	
		
			LLVM
		
	
	
	
	
	
; PR1318
 | 
						|
; RUN: opt < %s -load=%llvmshlibdir/LLVMHello%shlibext -hello \
 | 
						|
; RUN:   -disable-output 2>&1 | grep Hello
 | 
						|
; REQUIRES: loadable_module
 | 
						|
; FIXME: On Cygming, it might fail without building LLVMHello manually.
 | 
						|
 | 
						|
@junk = global i32 0
 | 
						|
 | 
						|
define i32* @somefunk() {
 | 
						|
  ret i32* @junk
 | 
						|
}
 | 
						|
 |