mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
4e81d40545
I really need to find a way to automate this, but I can't come up with a regex that has no false positives while handling tricky cases like custom check prefixes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162097 91177308-0d34-0410-b5e6-96231b3b80d8
35 lines
1.6 KiB
LLVM
35 lines
1.6 KiB
LLVM
; RUN: llc < %s -mtriple=i386-linux-gnu | FileCheck %s --check-prefix=CHECK-DEFAULT
|
|
; RUN: llc < %s -mtriple=i386-apple-darwin | FileCheck %s --check-prefix=CHECK-DARWIN
|
|
; PR5329
|
|
|
|
@llvm.global_ctors = appending global [3 x { i32, void ()* }] [{ i32, void ()* } { i32 2000, void ()* @construct_2 }, { i32, void ()* } { i32 3000, void ()* @construct_3 }, { i32, void ()* } { i32 1000, void ()* @construct_1 }]
|
|
; CHECK-DEFAULT: .section .ctors.64535,"aw",@progbits
|
|
; CHECK-DEFAULT: .long construct_1
|
|
; CHECK-DEFAULT: .section .ctors.63535,"aw",@progbits
|
|
; CHECK-DEFAULT: .long construct_2
|
|
; CHECK-DEFAULT: .section .ctors.62535,"aw",@progbits
|
|
; CHECK-DEFAULT: .long construct_3
|
|
|
|
; CHECK-DARWIN: .long _construct_1
|
|
; CHECK-DARWIN-NEXT: .long _construct_2
|
|
; CHECK-DARWIN-NEXT: .long _construct_3
|
|
|
|
@llvm.global_dtors = appending global [3 x { i32, void ()* }] [{ i32, void ()* } { i32 2000, void ()* @destruct_2 }, { i32, void ()* } { i32 1000, void ()* @destruct_1 }, { i32, void ()* } { i32 3000, void ()* @destruct_3 }]
|
|
; CHECK-DEFAULT: .section .dtors.64535,"aw",@progbits
|
|
; CHECK-DEFAULT: .long destruct_1
|
|
; CHECK-DEFAULT: .section .dtors.63535,"aw",@progbits
|
|
; CHECK-DEFAULT: .long destruct_2
|
|
; CHECK-DEFAULT: .section .dtors.62535,"aw",@progbits
|
|
; CHECK-DEFAULT: .long destruct_3
|
|
|
|
; CHECK-DARWIN: .long _destruct_1
|
|
; CHECK-DARWIN-NEXT: .long _destruct_2
|
|
; CHECK-DARWIN-NEXT: .long _destruct_3
|
|
|
|
declare void @construct_1()
|
|
declare void @construct_2()
|
|
declare void @construct_3()
|
|
declare void @destruct_1()
|
|
declare void @destruct_2()
|
|
declare void @destruct_3()
|