mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
eaa85e2027
This reverts commit r217211. Both the bfd ld and gold outputs were valid. They were using a Rela relocation, so the value present in the relocated location was not used, which caused me to misread the output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217264 91177308-0d34-0410-b5e6-96231b3b80d8
30 lines
881 B
LLVM
30 lines
881 B
LLVM
; RUN: llc -mtriple x86_64-pc-linux -use-ctors < %s | FileCheck --check-prefix=CTOR %s
|
|
; RUN: llc -mtriple x86_64-pc-linux < %s | FileCheck --check-prefix=INIT-ARRAY %s
|
|
@llvm.global_ctors = appending global [2 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @f, i8* null}, { i32, void ()*, i8* } { i32 15, void ()* @g, i8* @v }]
|
|
|
|
@v = weak_odr global i8 0
|
|
|
|
define void @f() {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
define void @g() {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
; CTOR: .section .ctors.65520,"aGw",@progbits,v,comdat
|
|
; CTOR-NEXT: .align 8
|
|
; CTOR-NEXT: .quad g
|
|
; CTOR-NEXT: .section .ctors,"aw",@progbits
|
|
; CTOR-NEXT: .align 8
|
|
; CTOR-NEXT: .quad f
|
|
|
|
; INIT-ARRAY: .section .init_array.15,"aGw",@init_array,v,comdat
|
|
; INIT-ARRAY-NEXT: .align 8
|
|
; INIT-ARRAY-NEXT: .quad g
|
|
; INIT-ARRAY-NEXT: .section .init_array,"aw",@init_array
|
|
; INIT-ARRAY-NEXT: .align 8
|
|
; INIT-ARRAY-NEXT: .quad f
|