mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-11 13:46:13 +00:00
b5a1802c6c
Only force "extern" linkage if the function used to be a definition in the source module. Declarations keep their original linkage. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265043 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
369 B
LLVM
13 lines
369 B
LLVM
; Test that extern_weak linkage is preserved.
|
|
; RUN: llvm-split -o %t %s
|
|
; RUN: llvm-dis -o - %t0 | FileCheck %s
|
|
; RUN: llvm-dis -o - %t1 | FileCheck %s
|
|
|
|
; Both declarations are extern_weak in all partitions.
|
|
|
|
; CHECK: @x = extern_weak global i32, align 4
|
|
@x = extern_weak global i32, align 4
|
|
|
|
; CHECK: declare extern_weak void @f(...)
|
|
declare extern_weak void @f(...)
|