mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
3d47402f2e
In ELF and COFF an alias is just another offset in a section. There is no way to represent an alias to something in another file. In MachO, the spec has the N_INDR type which should allow for exactly that, but is not currently implemented. Given that it is specified but not implemented, we error in codegen to avoid miscompiling but don't reject aliases to declarations in the verifier to leave the option open of implementing it. In the past we have used alias to declarations as a way of implementing weakref, which is why it exists in some old tests which this patch updates. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194705 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
237 B
LLVM
15 lines
237 B
LLVM
; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1
|
|
; RUN: grep "callq g@PLT" %t1
|
|
|
|
@g = alias weak i32 ()* @f
|
|
|
|
define void @h() {
|
|
entry:
|
|
%tmp31 = call i32 @g()
|
|
ret void
|
|
}
|
|
|
|
define weak i32 @f() {
|
|
ret i32 42
|
|
}
|