mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-09 05:31:37 +00:00
13318e52ce
Remove out of date comment. Pass .ll files to llvm-link. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254210 91177308-0d34-0410-b5e6-96231b3b80d8
7 lines
158 B
LLVM
7 lines
158 B
LLVM
; RUN: echo " define linkonce void @foo() { ret void } " > %t.ll
|
|
; RUN: llvm-link %s %t.ll -S | FileCheck %s
|
|
; CHECK: linkonce{{.*}}foo
|
|
|
|
declare void @foo()
|
|
|