26 lines
		
	
	
		
			584 B
		
	
	
	
		
			LLVM
		
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			584 B
		
	
	
	
		
			LLVM
		
	
	
	
; RUN: llvm-as -o %t.bc %s
 | 
						|
; RUN: llvm-lto -exported-symbol=foo -exported-symbol=bar -j2 -o %t.o %t.bc
 | 
						|
; RUN: llvm-nm %t.o.0 | FileCheck --check-prefix=CHECK0 %s
 | 
						|
; RUN: llvm-nm %t.o.1 | FileCheck --check-prefix=CHECK1 %s
 | 
						|
 | 
						|
; FIXME: Investigate test failures on these architecures.
 | 
						|
; UNSUPPORTED: mips, mipsel, aarch64, powerpc64
 | 
						|
 | 
						|
target triple = "x86_64-unknown-linux-gnu"
 | 
						|
 | 
						|
; CHECK0-NOT: bar
 | 
						|
; CHECK0: T foo
 | 
						|
; CHECK0-NOT: bar
 | 
						|
define void @foo() {
 | 
						|
  call void @bar()
 | 
						|
  ret void
 | 
						|
}
 | 
						|
 | 
						|
; CHECK1-NOT: foo
 | 
						|
; CHECK1: T bar
 | 
						|
; CHECK1-NOT: foo
 | 
						|
define void @bar() {
 | 
						|
  call void @foo()
 | 
						|
  ret void
 | 
						|
}
 |