1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-29 13:32:33 +00:00

Add MCJIT test case for running global constructors.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168149 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Amara Emerson 2012-11-16 11:17:00 +00:00
parent 098d6d5734
commit 4372f00373

@ -0,0 +1,21 @@
; RUN: %lli -mtriple=%mcjit_triple -use-mcjit %s > /dev/null
@var = global i32 1, align 4
@llvm.global_ctors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 65535, void ()* @ctor_func }]
@llvm.global_dtors = appending global [1 x { i32, void ()* }] [{ i32, void ()* } { i32 65535, void ()* @dtor_func }]
define i32 @main() nounwind {
entry:
%0 = load i32* @var, align 4
ret i32 %0
}
define internal void @ctor_func() section ".text.startup" {
entry:
store i32 0, i32* @var, align 4
ret void
}
define internal void @dtor_func() section ".text.startup" {
entry:
ret void
}