mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-08 12:21:04 +00:00
e8152e3f49
After comdat processing, the symbols still go through regular symbol resolution. We were not doing it for linkonce symbols since they are lazy linked. This fixes pr27044. llvm-svn: 264288
9 lines
169 B
LLVM
9 lines
169 B
LLVM
; RUN: llvm-link -S %s %p/Inputs/pr27044.ll -o - | FileCheck %s
|
|
|
|
; CHECK: define i32 @f1() {
|
|
; CHECK: define void @f2() comdat($foo) {
|
|
|
|
define i32 @f1() {
|
|
ret i32 0
|
|
}
|